mirror of
https://github.com/home-assistant/core.git
synced 2026-05-28 19:26:11 +01:00
6e7a7ba4a0
* Fix upnp logger name * Fix more loggers
20 lines
442 B
Python
20 lines
442 B
Python
"""Define constants for the SimpliSafe component."""
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
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}'
|