mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 19:27:51 +00:00
11 lines
195 B
Python
11 lines
195 B
Python
"""Constants for the Tedee integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "tedee"
|
|
NAME = "Tedee"
|
|
|
|
SCAN_INTERVAL = timedelta(seconds=10)
|
|
|
|
CONF_LOCAL_ACCESS_TOKEN = "local_access_token"
|