1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-01 19:57:08 +01:00
Files
core/homeassistant/components/helty/const.py
T
2026-06-01 22:20:22 +02:00

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"