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

Classes

class  SwitchBeeClimateEntity
 

Functions

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

Variables

dictionary FAN_SB_TO_HASS
 
dictionary HVAC_ACTION_SB_TO_HASS
 
dictionary HVAC_MODE_SB_TO_HASS
 
dictionary HVAC_UNIT_SB_TO_HASS
 
list SUPPORTED_FAN_MODES = [FAN_AUTO, FAN_HIGH, FAN_MEDIUM, FAN_LOW]
 

Detailed Description

Support for SwitchBee climate.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.switchbee.climate.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry,
AddEntitiesCallback   async_add_entities 
)
Set up SwitchBee climate.

Definition at line 76 of file climate.py.

Variable Documentation

◆ FAN_SB_TO_HASS

dictionary homeassistant.components.switchbee.climate.FAN_SB_TO_HASS
Initial value:
1 = {
2  ThermostatFanSpeed.AUTO: FAN_AUTO,
3  ThermostatFanSpeed.LOW: FAN_LOW,
4  ThermostatFanSpeed.MEDIUM: FAN_MEDIUM,
5  ThermostatFanSpeed.HIGH: FAN_HIGH,
6 }

Definition at line 36 of file climate.py.

◆ HVAC_ACTION_SB_TO_HASS

dictionary homeassistant.components.switchbee.climate.HVAC_ACTION_SB_TO_HASS
Initial value:
1 = {
2  ThermostatMode.COOL: HVACAction.COOLING,
3  ThermostatMode.HEAT: HVACAction.HEATING,
4  ThermostatMode.FAN: HVACAction.FAN,
5 }

Definition at line 62 of file climate.py.

◆ HVAC_MODE_SB_TO_HASS

dictionary homeassistant.components.switchbee.climate.HVAC_MODE_SB_TO_HASS
Initial value:
1 = {
2  ThermostatMode.COOL: HVACMode.COOL,
3  ThermostatMode.HEAT: HVACMode.HEAT,
4  ThermostatMode.FAN: HVACMode.FAN_ONLY,
5 }

Definition at line 50 of file climate.py.

◆ HVAC_UNIT_SB_TO_HASS

dictionary homeassistant.components.switchbee.climate.HVAC_UNIT_SB_TO_HASS
Initial value:
1 = {
2  ThermostatTemperatureUnit.CELSIUS: UnitOfTemperature.CELSIUS,
3  ThermostatTemperatureUnit.FAHRENHEIT: UnitOfTemperature.FAHRENHEIT,
4 }

Definition at line 68 of file climate.py.

◆ SUPPORTED_FAN_MODES

list homeassistant.components.switchbee.climate.SUPPORTED_FAN_MODES = [FAN_AUTO, FAN_HIGH, FAN_MEDIUM, FAN_LOW]

Definition at line 73 of file climate.py.