13 lines
335 B
Python
13 lines
335 B
Python
"""Support for Honeywell (US) Total Connect Comfort climate systems."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "honeywell"
|
|
|
|
CONF_COOL_AWAY_TEMPERATURE = "away_cool_temperature"
|
|
CONF_HEAT_AWAY_TEMPERATURE = "away_heat_temperature"
|
|
DEFAULT_COOL_AWAY_TEMPERATURE = 88
|
|
DEFAULT_HEAT_AWAY_TEMPERATURE = 61
|
|
_LOGGER = logging.getLogger(__name__)
|
|
RETRY = 3
|