mirror of
https://github.com/home-assistant/core.git
synced 2025-07-03 19:37:10 +00:00
16 lines
340 B
Python
16 lines
340 B
Python
"""Constants for the devolo_home_control integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "devolo_home_control"
|
|
PLATFORMS = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.CLIMATE,
|
|
Platform.COVER,
|
|
Platform.LIGHT,
|
|
Platform.SENSOR,
|
|
Platform.SIREN,
|
|
Platform.SWITCH,
|
|
]
|
|
SUPPORTED_MODEL_TYPES = ["2600", "2601"]
|