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

Classes

class  EcoNetThermostat
 

Functions

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

Variables

dictionary ECONET_FAN_STATE_TO_HA
 
dictionary ECONET_STATE_TO_HA
 
dictionary HA_FAN_STATE_TO_ECONET = {value: key for key, value in ECONET_FAN_STATE_TO_HA.items()}
 
dictionary HA_STATE_TO_ECONET = {value: key for key, value in ECONET_STATE_TO_HA.items()}
 
tuple SUPPORT_FLAGS_THERMOSTAT
 

Detailed Description

Support for Rheem EcoNet thermostats.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.econet.climate.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry,
AddEntitiesCallback   async_add_entities 
)
Set up EcoNet thermostat based on a config entry.

Definition at line 53 of file climate.py.

Variable Documentation

◆ ECONET_FAN_STATE_TO_HA

dictionary homeassistant.components.econet.climate.ECONET_FAN_STATE_TO_HA
Initial value:
1 = {
2  ThermostatFanMode.AUTO: FAN_AUTO,
3  ThermostatFanMode.LOW: FAN_LOW,
4  ThermostatFanMode.MEDIUM: FAN_MEDIUM,
5  ThermostatFanMode.HIGH: FAN_HIGH,
6 }

Definition at line 37 of file climate.py.

◆ ECONET_STATE_TO_HA

dictionary homeassistant.components.econet.climate.ECONET_STATE_TO_HA
Initial value:
1 = {
2  ThermostatOperationMode.HEATING: HVACMode.HEAT,
3  ThermostatOperationMode.COOLING: HVACMode.COOL,
4  ThermostatOperationMode.OFF: HVACMode.OFF,
5  ThermostatOperationMode.AUTO: HVACMode.HEAT_COOL,
6  ThermostatOperationMode.FAN_ONLY: HVACMode.FAN_ONLY,
7 }

Definition at line 28 of file climate.py.

◆ HA_FAN_STATE_TO_ECONET

dictionary homeassistant.components.econet.climate.HA_FAN_STATE_TO_ECONET = {value: key for key, value in ECONET_FAN_STATE_TO_HA.items()}

Definition at line 43 of file climate.py.

◆ HA_STATE_TO_ECONET

dictionary homeassistant.components.econet.climate.HA_STATE_TO_ECONET = {value: key for key, value in ECONET_STATE_TO_HA.items()}

Definition at line 35 of file climate.py.

◆ SUPPORT_FLAGS_THERMOSTAT

tuple homeassistant.components.econet.climate.SUPPORT_FLAGS_THERMOSTAT
Initial value:
1 = (
2  ClimateEntityFeature.TARGET_TEMPERATURE
3  | ClimateEntityFeature.TARGET_TEMPERATURE_RANGE
4  | ClimateEntityFeature.FAN_MODE
5  | ClimateEntityFeature.AUX_HEAT
6 )

Definition at line 45 of file climate.py.