Files
core/homeassistant/components/velux/const.py
2025-07-28 13:15:59 +02:00

10 lines
251 B
Python

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