Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.fjaraskupan.fan Namespace Reference

Classes

class  Fan
 
class  UnsupportedPreset
 

Functions

None async_setup_entry (HomeAssistant hass, ConfigEntry config_entry, AddEntitiesCallback async_add_entities)
 

Variables

list ORDERED_NAMED_FAN_SPEEDS = ["1", "2", "3", "4", "5", "6", "7", "8"]
 
string PRESET_MODE_AFTER_COOKING_AUTO = "after_cooking_auto"
 
string PRESET_MODE_AFTER_COOKING_MANUAL = "after_cooking_manual"
 
string PRESET_MODE_NORMAL = "normal"
 
list PRESET_MODES
 
dictionary PRESET_TO_COMMAND
 

Detailed Description

Support for Fjäråskupan fans.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.fjaraskupan.fan.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  config_entry,
AddEntitiesCallback  async_add_entities 
)
Set up sensors dynamically through discovery.

Definition at line 52 of file fan.py.

Variable Documentation

◆ ORDERED_NAMED_FAN_SPEEDS

list homeassistant.components.fjaraskupan.fan.ORDERED_NAMED_FAN_SPEEDS = ["1", "2", "3", "4", "5", "6", "7", "8"]

Definition at line 30 of file fan.py.

◆ PRESET_MODE_AFTER_COOKING_AUTO

string homeassistant.components.fjaraskupan.fan.PRESET_MODE_AFTER_COOKING_AUTO = "after_cooking_auto"

Definition at line 34 of file fan.py.

◆ PRESET_MODE_AFTER_COOKING_MANUAL

string homeassistant.components.fjaraskupan.fan.PRESET_MODE_AFTER_COOKING_MANUAL = "after_cooking_manual"

Definition at line 33 of file fan.py.

◆ PRESET_MODE_NORMAL

string homeassistant.components.fjaraskupan.fan.PRESET_MODE_NORMAL = "normal"

Definition at line 32 of file fan.py.

◆ PRESET_MODES

list homeassistant.components.fjaraskupan.fan.PRESET_MODES
Initial value:
1 = [
2  PRESET_MODE_NORMAL,
3  PRESET_MODE_AFTER_COOKING_AUTO,
4  PRESET_MODE_AFTER_COOKING_MANUAL,
5 ]

Definition at line 35 of file fan.py.

◆ PRESET_TO_COMMAND

dictionary homeassistant.components.fjaraskupan.fan.PRESET_TO_COMMAND
Initial value:
1 = {
2  PRESET_MODE_AFTER_COOKING_MANUAL: COMMAND_AFTERCOOKINGTIMERMANUAL,
3  PRESET_MODE_AFTER_COOKING_AUTO: COMMAND_AFTERCOOKINGTIMERAUTO,
4  PRESET_MODE_NORMAL: COMMAND_AFTERCOOKINGTIMEROFF,
5 }

Definition at line 41 of file fan.py.