35 lines
981 B
Python
35 lines
981 B
Python
"""Support for Fibaro 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 FIBARO_DEVICES, FibaroDevice
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Perform the setup for Fibaro scenes."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
async_add_entities(
|
|
[FibaroScene(scene) for scene in hass.data[FIBARO_DEVICES]["scene"]], True
|
|
)
|
|
|
|
|
|
class FibaroScene(FibaroDevice, Scene):
|
|
"""Representation of a Fibaro scene entity."""
|
|
|
|
def activate(self, **kwargs: Any) -> None:
|
|
"""Activate the scene."""
|
|
self.fibaro_device.start()
|