Files
core/homeassistant/components/velux/const.py
2025-11-11 17:10:20 +01:00

16 lines
291 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.SCENE,
]
LOGGER = getLogger(__package__)