Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """The venstar component."""
2 
3 import logging
4 
5 DOMAIN = "venstar"
6 
7 ATTR_FAN_STATE = "fan_state"
8 ATTR_HVAC_STATE = "hvac_mode"
9 
10 CONF_HUMIDIFIER = "humidifier"
11 
12 DEFAULT_SSL = False
13 
14 HOLD_MODE_OFF = "off"
15 HOLD_MODE_TEMPERATURE = "temperature"
16 
17 VENSTAR_TIMEOUT = 5
18 VENSTAR_SLEEP = 1.0
19 
20 _LOGGER = logging.getLogger(__name__)