mirror of
https://github.com/home-assistant/core.git
synced 2025-11-19 16:00:11 +00:00
16 lines
291 B
Python
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__)
|