Files
core/homeassistant/components/rainmachine/const.py
T
2019-05-02 09:45:51 +02:00

20 lines
434 B
Python

"""Define constants for the SimpliSafe component."""
from datetime import timedelta
import logging
LOGGER = logging.getLogger('.')
DOMAIN = 'rainmachine'
DATA_CLIENT = 'client'
DEFAULT_PORT = 8080
DEFAULT_SCAN_INTERVAL = timedelta(seconds=60)
DEFAULT_SSL = True
PROVISION_SETTINGS = 'provision.settings'
RESTRICTIONS_CURRENT = 'restrictions.current'
RESTRICTIONS_UNIVERSAL = 'restrictions.universal'
TOPIC_UPDATE = 'update_{0}'