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

Classes

class  NuHeatThermostat
 

Functions

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

Variables

 _LOGGER = logging.getLogger(__name__)
 
list OPERATION_LIST = [HVACMode.AUTO, HVACMode.HEAT]
 
dictionary PRESET_MODE_TO_SCHEDULE_MODE_MAP
 
list PRESET_MODES = [PRESET_RUN, PRESET_TEMPORARY_HOLD, PRESET_PERMANENT_HOLD]
 
string PRESET_PERMANENT_HOLD = "Permanent Hold"
 
string PRESET_RUN = "Run Schedule"
 
string PRESET_TEMPORARY_HOLD = "Temporary Hold"
 
dictionary SCHEDULE_MODE_TO_PRESET_MODE_MAP
 

Detailed Description

Support for NuHeat thermostats.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.nuheat.climate.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  config_entry,
AddEntitiesCallback  async_add_entities 
)
Set up the NuHeat thermostat(s).

Definition at line 55 of file climate.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 31 of file climate.py.

◆ OPERATION_LIST

list homeassistant.components.nuheat.climate.OPERATION_LIST = [HVACMode.AUTO, HVACMode.HEAT]

Definition at line 36 of file climate.py.

◆ PRESET_MODE_TO_SCHEDULE_MODE_MAP

dictionary homeassistant.components.nuheat.climate.PRESET_MODE_TO_SCHEDULE_MODE_MAP
Initial value:
1 = {
2  PRESET_RUN: SCHEDULE_RUN,
3  PRESET_TEMPORARY_HOLD: SCHEDULE_TEMPORARY_HOLD,
4  PRESET_PERMANENT_HOLD: SCHEDULE_HOLD,
5 }

Definition at line 44 of file climate.py.

◆ PRESET_MODES

list homeassistant.components.nuheat.climate.PRESET_MODES = [PRESET_RUN, PRESET_TEMPORARY_HOLD, PRESET_PERMANENT_HOLD]

Definition at line 42 of file climate.py.

◆ PRESET_PERMANENT_HOLD

string homeassistant.components.nuheat.climate.PRESET_PERMANENT_HOLD = "Permanent Hold"

Definition at line 40 of file climate.py.

◆ PRESET_RUN

string homeassistant.components.nuheat.climate.PRESET_RUN = "Run Schedule"

Definition at line 38 of file climate.py.

◆ PRESET_TEMPORARY_HOLD

string homeassistant.components.nuheat.climate.PRESET_TEMPORARY_HOLD = "Temporary Hold"

Definition at line 39 of file climate.py.

◆ SCHEDULE_MODE_TO_PRESET_MODE_MAP

dictionary homeassistant.components.nuheat.climate.SCHEDULE_MODE_TO_PRESET_MODE_MAP
Initial value:
1 = {
2  value: key for key, value in PRESET_MODE_TO_SCHEDULE_MODE_MAP.items()
3 }

Definition at line 50 of file climate.py.