mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-29 09:07:19 +02:00
11 lines
203 B
Python
11 lines
203 B
Python
"""Define constants for the SimpliSafe component."""
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "simplisafe"
|
|
|
|
DATA_CLIENT = "client"
|
|
|
|
DEFAULT_SCAN_INTERVAL = timedelta(seconds=30)
|
|
|
|
TOPIC_UPDATE = "update"
|