core/homeassistant/components/toon/const.py

24 lines
499 B
Python
Raw Normal View History

"""Constants for the Toon integration."""
from datetime import timedelta
2019-07-31 19:25:30 +00:00
DOMAIN = "toon"
2019-07-31 19:25:30 +00:00
DATA_TOON = "toon"
DATA_TOON_CLIENT = "toon_client"
DATA_TOON_CONFIG = "toon_config"
DATA_TOON_UPDATED = "toon_updated"
2019-07-31 19:25:30 +00:00
CONF_CLIENT_ID = "client_id"
CONF_CLIENT_SECRET = "client_secret"
CONF_DISPLAY = "display"
CONF_TENANT = "tenant"
DEFAULT_SCAN_INTERVAL = timedelta(seconds=300)
DEFAULT_MAX_TEMP = 30.0
DEFAULT_MIN_TEMP = 6.0
2019-07-31 19:25:30 +00:00
CURRENCY_EUR = "EUR"
RATIO_PERCENT = "%"
VOLUME_CM3 = "CM3"
VOLUME_M3 = "M3"