21 lines
512 B
Python
21 lines
512 B
Python
"""Define constants for the SimpliSafe component."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "rainmachine"
|
|
|
|
CONF_ZONE_RUN_TIME = "zone_run_time"
|
|
|
|
DATA_CONTROLLER = "controller"
|
|
DATA_COORDINATOR = "coordinator"
|
|
DATA_LISTENER = "listener"
|
|
DATA_PROGRAMS = "programs"
|
|
DATA_PROVISION_SETTINGS = "provision.settings"
|
|
DATA_RESTRICTIONS_CURRENT = "restrictions.current"
|
|
DATA_RESTRICTIONS_UNIVERSAL = "restrictions.universal"
|
|
DATA_ZONES = "zones"
|
|
|
|
DEFAULT_PORT = 8080
|
|
DEFAULT_ZONE_RUN = 60 * 10
|