core/homeassistant/components/simplisafe/const.py

11 lines
203 B
Python
Raw Normal View History

"""Define constants for the SimpliSafe component."""
from datetime import timedelta
2019-07-31 19:25:30 +00:00
DOMAIN = "simplisafe"
2019-07-31 19:25:30 +00:00
DATA_CLIENT = "client"
DEFAULT_SCAN_INTERVAL = timedelta(seconds=30)
2019-07-31 19:25:30 +00:00
TOPIC_UPDATE = "update"