core/homeassistant/components/rainmachine/const.py

20 lines
442 B
Python
Raw Normal View History

"""Define constants for the SimpliSafe component."""
from datetime import timedelta
import logging
LOGGER = logging.getLogger(__package__)
2019-07-31 19:25:30 +00:00
DOMAIN = "rainmachine"
2019-07-31 19:25:30 +00:00
DATA_CLIENT = "client"
DEFAULT_PORT = 8080
DEFAULT_SCAN_INTERVAL = timedelta(seconds=60)
DEFAULT_SSL = True
2019-07-31 19:25:30 +00:00
PROVISION_SETTINGS = "provision.settings"
RESTRICTIONS_CURRENT = "restrictions.current"
RESTRICTIONS_UNIVERSAL = "restrictions.universal"
2019-07-31 19:25:30 +00:00
TOPIC_UPDATE = "update_{0}"