mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 19:57:08 +01:00
14 lines
329 B
Python
14 lines
329 B
Python
"""Constants for the Helty Flow integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "helty"
|
|
|
|
#: How often the coordinator polls the unit.
|
|
SCAN_INTERVAL = timedelta(seconds=60)
|
|
|
|
# Fan preset mode identifiers (also used as translation keys).
|
|
PRESET_BOOST = "boost"
|
|
PRESET_NIGHT = "night"
|
|
PRESET_FREE_COOLING = "free_cooling"
|