1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 14:08:21 +00:00

Move iaqualink update from climate to component (#26505)

* Move iaqualink update from climate to component

* Typing fix
This commit is contained in:
Florent Thoumie
2019-09-09 11:06:06 -07:00
committed by Martin Hjelmare
parent 02ded7a4a8
commit f167914951
3 changed files with 56 additions and 13 deletions

View File

@@ -1,5 +1,8 @@
"""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)