Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Daikin."""
2 
3 DOMAIN = "daikin"
4 
5 ATTR_TARGET_TEMPERATURE = "target_temperature"
6 ATTR_INSIDE_TEMPERATURE = "inside_temperature"
7 ATTR_OUTSIDE_TEMPERATURE = "outside_temperature"
8 
9 ATTR_TARGET_HUMIDITY = "target_humidity"
10 ATTR_HUMIDITY = "humidity"
11 
12 ATTR_COMPRESSOR_FREQUENCY = "compressor_frequency"
13 
14 ATTR_ENERGY_TODAY = "energy_today"
15 ATTR_COOL_ENERGY = "cool_energy"
16 ATTR_HEAT_ENERGY = "heat_energy"
17 
18 ATTR_TOTAL_POWER = "total_power"
19 ATTR_TOTAL_ENERGY_TODAY = "total_energy_today"
20 
21 ATTR_STATE_ON = "on"
22 ATTR_STATE_OFF = "off"
23 
24 KEY_MAC = "mac"
25 KEY_IP = "ip"
26 
27 TIMEOUT = 60