mirror of
https://github.com/home-assistant/core.git
synced 2025-05-05 06:29:16 +00:00

* Import new iaqualink component with climate platform. * Style and unittest changes, fix async_step_import. * Reorder imports. * Fix stale doctstrings and add unittest.
6 lines
210 B
Python
6 lines
210 B
Python
"""Constants for the the iaqualink component."""
|
|
from homeassistant.components.climate.const import HVAC_MODE_HEAT, HVAC_MODE_OFF
|
|
|
|
DOMAIN = "iaqualink"
|
|
CLIMATE_SUPPORTED_MODES = [HVAC_MODE_HEAT, HVAC_MODE_OFF]
|