Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.mysensors.climate Namespace Reference

Classes

class  MySensorsHVAC
 

Functions

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

Variables

dictionary DICT_HA_TO_MYS
 
dictionary DICT_MYS_TO_HA
 
list FAN_LIST = ["Auto", "Min", "Normal", "Max"]
 
list OPERATION_LIST = [HVACMode.OFF, HVACMode.AUTO, HVACMode.COOL, HVACMode.HEAT]
 

Detailed Description

MySensors platform that offers a Climate (MySensors-HVAC) component.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.mysensors.climate.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  config_entry,
AddEntitiesCallback  async_add_entities 
)
Set up this platform for a specific ConfigEntry(==Gateway).

Definition at line 43 of file climate.py.

Variable Documentation

◆ DICT_HA_TO_MYS

dictionary homeassistant.components.mysensors.climate.DICT_HA_TO_MYS
Initial value:
1 = {
2  HVACMode.AUTO: "AutoChangeOver",
3  HVACMode.COOL: "CoolOn",
4  HVACMode.HEAT: "HeatOn",
5  HVACMode.OFF: "Off",
6 }

Definition at line 26 of file climate.py.

◆ DICT_MYS_TO_HA

dictionary homeassistant.components.mysensors.climate.DICT_MYS_TO_HA
Initial value:
1 = {
2  "AutoChangeOver": HVACMode.AUTO,
3  "CoolOn": HVACMode.COOL,
4  "HeatOn": HVACMode.HEAT,
5  "Off": HVACMode.OFF,
6 }

Definition at line 32 of file climate.py.

◆ FAN_LIST

list homeassistant.components.mysensors.climate.FAN_LIST = ["Auto", "Min", "Normal", "Max"]

Definition at line 39 of file climate.py.

◆ OPERATION_LIST

list homeassistant.components.mysensors.climate.OPERATION_LIST = [HVACMode.OFF, HVACMode.AUTO, HVACMode.COOL, HVACMode.HEAT]

Definition at line 40 of file climate.py.