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

Classes

class  Device
 

Functions

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

Variables

 _LOGGER = logging.getLogger(__name__)
 
dictionary HVAC_INVERT_MAP = {v: k for k, v in HVAC_MAP.items()}
 
dictionary HVAC_MAP
 
list SUPPORTED_HVAC_MODES
 

Detailed Description

Support for Freedompro climate.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.freedompro.climate.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry,
AddEntitiesCallback   async_add_entities 
)
Set up Freedompro climate.

Definition at line 46 of file climate.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.freedompro.climate._LOGGER = logging.getLogger(__name__)
private

Definition at line 29 of file climate.py.

◆ HVAC_INVERT_MAP

dictionary homeassistant.components.freedompro.climate.HVAC_INVERT_MAP = {v: k for k, v in HVAC_MAP.items()}

Definition at line 37 of file climate.py.

◆ HVAC_MAP

dictionary homeassistant.components.freedompro.climate.HVAC_MAP
Initial value:
1 = {
2  0: HVACMode.OFF,
3  1: HVACMode.HEAT,
4  2: HVACMode.COOL,
5 }

Definition at line 31 of file climate.py.

◆ SUPPORTED_HVAC_MODES

list homeassistant.components.freedompro.climate.SUPPORTED_HVAC_MODES
Initial value:
1 = [
2  HVACMode.OFF,
3  HVACMode.HEAT,
4  HVACMode.COOL,
5 ]

Definition at line 39 of file climate.py.