mirror of https://github.com/home-assistant/core
24 lines
673 B
Python
24 lines
673 B
Python
"""Define constants for the SimpliSafe component."""
|
|
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "rainmachine"
|
|
|
|
CONF_DURATION = "duration"
|
|
CONF_DEFAULT_ZONE_RUN_TIME = "zone_run_time"
|
|
CONF_USE_APP_RUN_TIMES = "use_app_run_times"
|
|
CONF_ALLOW_INACTIVE_ZONES_TO_RUN = "allow_inactive_zones_to_run"
|
|
|
|
DATA_API_VERSIONS = "api.versions"
|
|
DATA_MACHINE_FIRMWARE_UPDATE_STATUS = "machine.firmware_update_status"
|
|
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
|