mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
10 lines
251 B
Python
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__)
|