Home Assistant Unofficial Reference 2024.12.1
climate.py File Reference

Go to the source code of this file.

Classes

class  homeassistant.components.radiotherm.climate.RadioThermostat
 

Namespaces

 homeassistant.components.radiotherm.climate
 

Functions

None homeassistant.components.radiotherm.climate.async_setup_entry (HomeAssistant hass, ConfigEntry entry, AddEntitiesCallback async_add_entities)
 
def homeassistant.components.radiotherm.climate.round_temp (temperature)
 

Variables

string homeassistant.components.radiotherm.climate.ATTR_FAN_ACTION = "fan_action"
 
dictionary homeassistant.components.radiotherm.climate.CODE_TO_FAN_MODE = {0: FAN_AUTO, 1: STATE_CIRCULATE, 2: FAN_ON}
 
dictionary homeassistant.components.radiotherm.climate.CODE_TO_FAN_STATE = {0: FAN_OFF, 1: FAN_ON}
 
dictionary homeassistant.components.radiotherm.climate.CODE_TO_PRESET_MODE = {v: k for k, v in PRESET_MODE_TO_CODE.items()}
 
dictionary homeassistant.components.radiotherm.climate.CODE_TO_TEMP_MODE
 
dictionary homeassistant.components.radiotherm.climate.CODE_TO_TEMP_STATE = {0: HVACAction.IDLE, 1: HVACAction.HEATING, 2: HVACAction.COOLING}
 
string homeassistant.components.radiotherm.climate.CONF_HOLD_TEMP = "hold_temp"
 
list homeassistant.components.radiotherm.climate.CT30_FAN_OPERATION_LIST = [FAN_ON, FAN_AUTO]
 
list homeassistant.components.radiotherm.climate.CT80_FAN_OPERATION_LIST = [FAN_ON, STATE_CIRCULATE, FAN_AUTO]
 
dictionary homeassistant.components.radiotherm.climate.FAN_MODE_TO_CODE = {v: k for k, v in CODE_TO_FAN_MODE.items()}
 
list homeassistant.components.radiotherm.climate.OPERATION_LIST = [HVACMode.AUTO, HVACMode.COOL, HVACMode.HEAT, HVACMode.OFF]
 
int homeassistant.components.radiotherm.climate.PARALLEL_UPDATES = 1
 
string homeassistant.components.radiotherm.climate.PRESET_ALTERNATE = "alternate"
 
string homeassistant.components.radiotherm.climate.PRESET_HOLIDAY = "holiday"
 
dictionary homeassistant.components.radiotherm.climate.PRESET_MODE_TO_CODE
 
list homeassistant.components.radiotherm.climate.PRESET_MODES = [PRESET_HOME, PRESET_ALTERNATE, PRESET_AWAY, PRESET_HOLIDAY]
 
string homeassistant.components.radiotherm.climate.STATE_CIRCULATE = "circulate"
 
dictionary homeassistant.components.radiotherm.climate.TEMP_MODE_TO_CODE = {v: k for k, v in CODE_TO_TEMP_MODE.items()}