mirror of
https://github.com/elisspace/core.git
synced 2026-09-18 16:51:50 +00:00
* Modify RainMachine to store a single dataclass in `hass.data` * Pass one object around instead of multiple
18 lines
421 B
Python
18 lines
421 B
Python
"""Define constants for the SimpliSafe component."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "rainmachine"
|
|
|
|
CONF_ZONE_RUN_TIME = "zone_run_time"
|
|
|
|
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
|