mirror of
https://github.com/home-assistant/core.git
synced 2026-01-25 00:52:39 +01: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"
|