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

Classes

class  TeslemetryCabinOverheatProtectionEntity
 
class  TeslemetryClimateEntity
 

Functions

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

Variables

dictionary COP_LEVELS
 
dictionary COP_MODES
 
int DEFAULT_MAX_TEMP = 28
 
int DEFAULT_MIN_TEMP = 15
 
int PARALLEL_UPDATES = 0
 
dictionary TEMP_LEVELS
 

Detailed Description

Climate platform for Teslemetry integration.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.teslemetry.climate.async_setup_entry ( HomeAssistant  hass,
TeslemetryConfigEntry  entry,
AddEntitiesCallback  async_add_entities 
)
Set up the Teslemetry Climate platform from a config entry.

Definition at line 38 of file climate.py.

Variable Documentation

◆ COP_LEVELS

dictionary homeassistant.components.teslemetry.climate.COP_LEVELS
Initial value:
1 = {
2  "Low": 30,
3  "Medium": 35,
4  "High": 40,
5 }

Definition at line 189 of file climate.py.

◆ COP_MODES

dictionary homeassistant.components.teslemetry.climate.COP_MODES
Initial value:
1 = {
2  "Off": HVACMode.OFF,
3  "On": HVACMode.COOL,
4  "FanOnly": HVACMode.FAN_ONLY,
5 }

Definition at line 182 of file climate.py.

◆ DEFAULT_MAX_TEMP

int homeassistant.components.teslemetry.climate.DEFAULT_MAX_TEMP = 28

Definition at line 33 of file climate.py.

◆ DEFAULT_MIN_TEMP

int homeassistant.components.teslemetry.climate.DEFAULT_MIN_TEMP = 15

Definition at line 32 of file climate.py.

◆ PARALLEL_UPDATES

int homeassistant.components.teslemetry.climate.PARALLEL_UPDATES = 0

Definition at line 35 of file climate.py.

◆ TEMP_LEVELS

dictionary homeassistant.components.teslemetry.climate.TEMP_LEVELS
Initial value:
1 = {
2  30: CabinOverheatProtectionTemp.LOW,
3  35: CabinOverheatProtectionTemp.MEDIUM,
4  40: CabinOverheatProtectionTemp.HIGH,
5 }

Definition at line 196 of file climate.py.