mirror of
https://github.com/home-assistant/core.git
synced 2026-08-27 08:34:16 +01:00
* Move iaqualink update from climate to component * Typing fix
9 lines
282 B
Python
9 lines
282 B
Python
"""Constants for the the iaqualink component."""
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.components.climate.const import HVAC_MODE_HEAT, HVAC_MODE_OFF
|
|
|
|
DOMAIN = "iaqualink"
|
|
CLIMATE_SUPPORTED_MODES = [HVAC_MODE_HEAT, HVAC_MODE_OFF]
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|