41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""Support for VELUX scenes."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.scene import Scene
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from . import _LOGGER, DATA_VELUX
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the scenes for Velux platform."""
|
|
entities = [VeluxScene(scene) for scene in hass.data[DATA_VELUX].pyvlx.scenes]
|
|
async_add_entities(entities)
|
|
|
|
|
|
class VeluxScene(Scene):
|
|
"""Representation of a Velux scene."""
|
|
|
|
def __init__(self, scene):
|
|
"""Init velux scene."""
|
|
_LOGGER.info("Adding Velux scene: %s", scene)
|
|
self.scene = scene
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the scene."""
|
|
return self.scene.name
|
|
|
|
async def async_activate(self, **kwargs: Any) -> None:
|
|
"""Activate the scene."""
|
|
await self.scene.run(wait_for_completion=False)
|