Home Assistant Unofficial Reference 2024.12.1
const.py File Reference

Go to the source code of this file.

Classes

class  homeassistant.components.climate.const .ClimateEntityFeature
 
class  homeassistant.components.climate.const .HVACAction
 
class  homeassistant.components.climate.const .HVACMode
 

Namespaces

 homeassistant.components.climate.const
 

Variables

 homeassistant.components.climate.const.__all__ = all_with_deprecated_constants(globals())
 
 homeassistant.components.climate.const.__dir__
 
 homeassistant.components.climate.const.__getattr__ = partial(check_if_deprecated_constant, module_globals=globals())
 
 homeassistant.components.climate.const._DEPRECATED_CURRENT_HVAC_COOL = DeprecatedConstantEnum(HVACAction.COOLING, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_CURRENT_HVAC_DRY = DeprecatedConstantEnum(HVACAction.DRYING, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_CURRENT_HVAC_FAN = DeprecatedConstantEnum(HVACAction.FAN, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_CURRENT_HVAC_HEAT = DeprecatedConstantEnum(HVACAction.HEATING, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_CURRENT_HVAC_IDLE = DeprecatedConstantEnum(HVACAction.IDLE, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_CURRENT_HVAC_OFF = DeprecatedConstantEnum(HVACAction.OFF, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_AUTO = DeprecatedConstantEnum(HVACMode.AUTO, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_COOL = DeprecatedConstantEnum(HVACMode.COOL, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_DRY = DeprecatedConstantEnum(HVACMode.DRY, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_FAN_ONLY = DeprecatedConstantEnum(HVACMode.FAN_ONLY, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_HEAT = DeprecatedConstantEnum(HVACMode.HEAT, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_HEAT_COOL = DeprecatedConstantEnum(HVACMode.HEAT_COOL, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_HVAC_MODE_OFF = DeprecatedConstantEnum(HVACMode.OFF, "2025.1")
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_AUX_HEAT
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_FAN_MODE
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_PRESET_MODE
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_SWING_MODE
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_TARGET_HUMIDITY
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_TARGET_TEMPERATURE
 
 homeassistant.components.climate.const._DEPRECATED_SUPPORT_TARGET_TEMPERATURE_RANGE
 
string homeassistant.components.climate.const.ATTR_AUX_HEAT = "aux_heat"
 
string homeassistant.components.climate.const.ATTR_CURRENT_HUMIDITY = "current_humidity"
 
string homeassistant.components.climate.const.ATTR_CURRENT_TEMPERATURE = "current_temperature"
 
string homeassistant.components.climate.const.ATTR_FAN_MODE = "fan_mode"
 
string homeassistant.components.climate.const.ATTR_FAN_MODES = "fan_modes"
 
string homeassistant.components.climate.const.ATTR_HUMIDITY = "humidity"
 
string homeassistant.components.climate.const.ATTR_HVAC_ACTION = "hvac_action"
 
string homeassistant.components.climate.const.ATTR_HVAC_MODE = "hvac_mode"
 
string homeassistant.components.climate.const.ATTR_HVAC_MODES = "hvac_modes"
 
string homeassistant.components.climate.const.ATTR_MAX_HUMIDITY = "max_humidity"
 
string homeassistant.components.climate.const.ATTR_MAX_TEMP = "max_temp"
 
string homeassistant.components.climate.const.ATTR_MIN_HUMIDITY = "min_humidity"
 
string homeassistant.components.climate.const.ATTR_MIN_TEMP = "min_temp"
 
string homeassistant.components.climate.const.ATTR_PRESET_MODE = "preset_mode"
 
string homeassistant.components.climate.const.ATTR_PRESET_MODES = "preset_modes"
 
string homeassistant.components.climate.const.ATTR_SWING_HORIZONTAL_MODE = "swing_horizontal_mode"
 
string homeassistant.components.climate.const.ATTR_SWING_HORIZONTAL_MODES = "swing_horizontal_modes"
 
string homeassistant.components.climate.const.ATTR_SWING_MODE = "swing_mode"
 
string homeassistant.components.climate.const.ATTR_SWING_MODES = "swing_modes"
 
string homeassistant.components.climate.const.ATTR_TARGET_TEMP_HIGH = "target_temp_high"
 
string homeassistant.components.climate.const.ATTR_TARGET_TEMP_LOW = "target_temp_low"
 
string homeassistant.components.climate.const.ATTR_TARGET_TEMP_STEP = "target_temp_step"
 
list homeassistant.components.climate.const.CURRENT_HVAC_ACTIONS = [cls.value for cls in HVACAction]
 
int homeassistant.components.climate.const.DEFAULT_MAX_HUMIDITY = 99
 
int homeassistant.components.climate.const.DEFAULT_MAX_TEMP = 35
 
int homeassistant.components.climate.const.DEFAULT_MIN_HUMIDITY = 30
 
int homeassistant.components.climate.const.DEFAULT_MIN_TEMP = 7
 
string homeassistant.components.climate.const.DOMAIN = "climate"
 
string homeassistant.components.climate.const.FAN_AUTO = "auto"
 
string homeassistant.components.climate.const.FAN_DIFFUSE = "diffuse"
 
string homeassistant.components.climate.const.FAN_FOCUS = "focus"
 
string homeassistant.components.climate.const.FAN_HIGH = "high"
 
string homeassistant.components.climate.const.FAN_LOW = "low"
 
string homeassistant.components.climate.const.FAN_MEDIUM = "medium"
 
string homeassistant.components.climate.const.FAN_MIDDLE = "middle"
 
string homeassistant.components.climate.const.FAN_OFF = "off"
 
string homeassistant.components.climate.const.FAN_ON = "on"
 
string homeassistant.components.climate.const.FAN_TOP = "top"
 
list homeassistant.components.climate.const.HVAC_MODES = [cls.value for cls in HVACMode]
 
string homeassistant.components.climate.const.INTENT_GET_TEMPERATURE = "HassClimateGetTemperature"
 
string homeassistant.components.climate.const.PRESET_ACTIVITY = "activity"
 
string homeassistant.components.climate.const.PRESET_AWAY = "away"
 
string homeassistant.components.climate.const.PRESET_BOOST = "boost"
 
string homeassistant.components.climate.const.PRESET_COMFORT = "comfort"
 
string homeassistant.components.climate.const.PRESET_ECO = "eco"
 
string homeassistant.components.climate.const.PRESET_HOME = "home"
 
string homeassistant.components.climate.const.PRESET_NONE = "none"
 
string homeassistant.components.climate.const.PRESET_SLEEP = "sleep"
 
string homeassistant.components.climate.const.SERVICE_SET_AUX_HEAT = "set_aux_heat"
 
string homeassistant.components.climate.const.SERVICE_SET_FAN_MODE = "set_fan_mode"
 
string homeassistant.components.climate.const.SERVICE_SET_HUMIDITY = "set_humidity"
 
string homeassistant.components.climate.const.SERVICE_SET_HVAC_MODE = "set_hvac_mode"
 
string homeassistant.components.climate.const.SERVICE_SET_PRESET_MODE = "set_preset_mode"
 
string homeassistant.components.climate.const.SERVICE_SET_SWING_HORIZONTAL_MODE = "set_swing_horizontal_mode"
 
string homeassistant.components.climate.const.SERVICE_SET_SWING_MODE = "set_swing_mode"
 
string homeassistant.components.climate.const.SERVICE_SET_TEMPERATURE = "set_temperature"
 
string homeassistant.components.climate.const.SWING_BOTH = "both"
 
string homeassistant.components.climate.const.SWING_HORIZONTAL = "horizontal"
 
string homeassistant.components.climate.const.SWING_HORIZONTAL_OFF = "off"
 
string homeassistant.components.climate.const.SWING_HORIZONTAL_ON = "on"
 
string homeassistant.components.climate.const.SWING_OFF = "off"
 
string homeassistant.components.climate.const.SWING_ON = "on"
 
string homeassistant.components.climate.const.SWING_VERTICAL = "vertical"