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

Classes

class  FGLairDevice
 

Functions

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

Variables

dictionary FUJI_TO_HA_FAN = {value: key for key, value in HA_TO_FUJI_FAN.items()}
 
dictionary FUJI_TO_HA_HVAC = {value: key for key, value in HA_TO_FUJI_HVAC.items()}
 
dictionary FUJI_TO_HA_SWING = {value: key for key, value in HA_TO_FUJI_SWING.items()}
 
dictionary HA_TO_FUJI_FAN
 
dictionary HA_TO_FUJI_HVAC
 
dictionary HA_TO_FUJI_SWING
 

Detailed Description

Support for Fujitsu HVAC devices that use the Ayla Iot platform.

Function Documentation

◆ async_setup_entry()

None homeassistant.components.fujitsu_fglair.climate.async_setup_entry ( HomeAssistant  hass,
FGLairConfigEntry  entry,
AddEntitiesCallback  async_add_entities 
)
Set up one Fujitsu HVAC device.

Definition at line 63 of file climate.py.

Variable Documentation

◆ FUJI_TO_HA_FAN

dictionary homeassistant.components.fujitsu_fglair.climate.FUJI_TO_HA_FAN = {value: key for key, value in HA_TO_FUJI_FAN.items()}

Definition at line 42 of file climate.py.

◆ FUJI_TO_HA_HVAC

dictionary homeassistant.components.fujitsu_fglair.climate.FUJI_TO_HA_HVAC = {value: key for key, value in HA_TO_FUJI_HVAC.items()}

Definition at line 52 of file climate.py.

◆ FUJI_TO_HA_SWING

dictionary homeassistant.components.fujitsu_fglair.climate.FUJI_TO_HA_SWING = {value: key for key, value in HA_TO_FUJI_SWING.items()}

Definition at line 60 of file climate.py.

◆ HA_TO_FUJI_FAN

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

Definition at line 36 of file climate.py.

◆ HA_TO_FUJI_HVAC

dictionary homeassistant.components.fujitsu_fglair.climate.HA_TO_FUJI_HVAC
Initial value:
1 = {
2  HVACMode.OFF: OpMode.OFF,
3  HVACMode.HEAT: OpMode.HEAT,
4  HVACMode.COOL: OpMode.COOL,
5  HVACMode.HEAT_COOL: OpMode.AUTO,
6  HVACMode.DRY: OpMode.DRY,
7  HVACMode.FAN_ONLY: OpMode.FAN,
8 }

Definition at line 44 of file climate.py.

◆ HA_TO_FUJI_SWING

dictionary homeassistant.components.fujitsu_fglair.climate.HA_TO_FUJI_SWING
Initial value:
1 = {
2  SWING_OFF: SwingMode.OFF,
3  SWING_VERTICAL: SwingMode.SWING_VERTICAL,
4  SWING_HORIZONTAL: SwingMode.SWING_HORIZONTAL,
5  SWING_BOTH: SwingMode.SWING_BOTH,
6 }

Definition at line 54 of file climate.py.