mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 02:49:40 +00:00
15 lines
316 B
Python
15 lines
316 B
Python
"""Constants for the huum integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "huum"
|
|
|
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.CLIMATE, Platform.LIGHT, Platform.NUMBER]
|
|
|
|
CONFIG_STEAMER = 1
|
|
CONFIG_LIGHT = 2
|
|
CONFIG_STEAMER_AND_LIGHT = 3
|
|
|
|
CONFIG_DEFAULT_MIN_TEMP = 40
|
|
CONFIG_DEFAULT_MAX_TEMP = 110
|