1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-18 12:03:33 +01:00
Files
core/homeassistant/components/velux/const.py
T

18 lines
333 B
Python

"""Constants for the Velux integration."""
from logging import getLogger
from homeassistant.const import Platform
DOMAIN = "velux"
PLATFORMS = [
Platform.BINARY_SENSOR,
Platform.BUTTON,
Platform.COVER,
Platform.LIGHT,
Platform.NUMBER,
Platform.SCENE,
Platform.SWITCH,
]
LOGGER = getLogger(__package__)