Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Support for Honeywell (US) Total Connect Comfort climate systems."""
2 
3 import logging
4 
5 DOMAIN = "honeywell"
6 
7 CONF_COOL_AWAY_TEMPERATURE = "away_cool_temperature"
8 CONF_HEAT_AWAY_TEMPERATURE = "away_heat_temperature"
9 DEFAULT_COOL_AWAY_TEMPERATURE = 88
10 DEFAULT_HEAT_AWAY_TEMPERATURE = 61
11 _LOGGER = logging.getLogger(__name__)
12 RETRY = 3