mirror of
https://github.com/home-assistant/core.git
synced 2026-05-31 20:54:23 +01:00
12 lines
277 B
Python
12 lines
277 B
Python
"""Constants for the iaqualink component."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "iaqualink"
|
|
|
|
UPDATE_INTERVAL_BY_SYSTEM_TYPE: dict[str, timedelta] = {
|
|
"iaqua": timedelta(seconds=15),
|
|
"exo": timedelta(seconds=60),
|
|
}
|
|
UPDATE_INTERVAL_DEFAULT = timedelta(seconds=30)
|