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

Classes

class  Thermostat
 

Functions

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

Variables

dictionary ZHA_TO_HA_HVAC_ACTION
 
dictionary ZHA_TO_HA_HVAC_MODE
 

Detailed Description

Climate on Zigbee Home Automation networks.

For more details on this platform, please refer to the documentation
at https://home-assistant.io/components/zha.climate/

Function Documentation

◆ async_setup_entry()

None homeassistant.components.zha.climate.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  config_entry,
AddEntitiesCallback  async_add_entities 
)
Set up the Zigbee Home Automation sensor from config entry.

Definition at line 66 of file climate.py.

Variable Documentation

◆ ZHA_TO_HA_HVAC_ACTION

dictionary homeassistant.components.zha.climate.ZHA_TO_HA_HVAC_ACTION
Initial value:
1 = {
2  ZHAHVACAction.OFF: HVACAction.OFF,
3  ZHAHVACAction.HEATING: HVACAction.HEATING,
4  ZHAHVACAction.COOLING: HVACAction.COOLING,
5  ZHAHVACAction.DRYING: HVACAction.DRYING,
6  ZHAHVACAction.IDLE: HVACAction.IDLE,
7  ZHAHVACAction.FAN: HVACAction.FAN,
8  ZHAHVACAction.PREHEATING: HVACAction.PREHEATING,
9 }

Definition at line 55 of file climate.py.

◆ ZHA_TO_HA_HVAC_MODE

dictionary homeassistant.components.zha.climate.ZHA_TO_HA_HVAC_MODE
Initial value:
1 = {
2  ZHAHVACMode.OFF: HVACMode.OFF,
3  ZHAHVACMode.AUTO: HVACMode.AUTO,
4  ZHAHVACMode.HEAT: HVACMode.HEAT,
5  ZHAHVACMode.COOL: HVACMode.COOL,
6  ZHAHVACMode.HEAT_COOL: HVACMode.HEAT_COOL,
7  ZHAHVACMode.DRY: HVACMode.DRY,
8  ZHAHVACMode.FAN_ONLY: HVACMode.FAN_ONLY,
9 }

Definition at line 45 of file climate.py.