13 lines
286 B
Python
13 lines
286 B
Python
"""Constants for the ecobee integration."""
|
|
import logging
|
|
|
|
_LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "ecobee"
|
|
DATA_ECOBEE_CONFIG = "ecobee_config"
|
|
|
|
CONF_INDEX = "index"
|
|
CONF_REFRESH_TOKEN = "refresh_token"
|
|
|
|
ECOBEE_PLATFORMS = ["binary_sensor", "climate", "sensor", "weather"]
|