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

Classes

class  BleBoxClimateEntity
 

Functions

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

Variables

dictionary BLEBOX_TO_HVACACTION
 
dictionary BLEBOX_TO_HVACMODE
 
 SCAN_INTERVAL = timedelta(seconds=5)
 

Detailed Description

BleBox climate entity.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.blebox.climate.async_setup_entry ( HomeAssistant  hass,
BleBoxConfigEntry  config_entry,
AddEntitiesCallback  async_add_entities 
)
Set up a BleBox climate entity.

Definition at line 38 of file climate.py.

Variable Documentation

◆ BLEBOX_TO_HVACACTION

dictionary homeassistant.components.blebox.climate.BLEBOX_TO_HVACACTION
Initial value:
1 = {
2  0: HVACAction.IDLE,
3  1: HVACAction.HEATING,
4  2: HVACAction.COOLING,
5  3: HVACAction.IDLE,
6 }

Definition at line 30 of file climate.py.

◆ BLEBOX_TO_HVACMODE

dictionary homeassistant.components.blebox.climate.BLEBOX_TO_HVACMODE
Initial value:
1 = {
2  None: None,
3  0: HVACMode.OFF,
4  1: HVACMode.HEAT,
5  2: HVACMode.COOL,
6 }

Definition at line 23 of file climate.py.

◆ SCAN_INTERVAL

homeassistant.components.blebox.climate.SCAN_INTERVAL = timedelta(seconds=5)

Definition at line 21 of file climate.py.