10 lines
194 B
Python
10 lines
194 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"
|