38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
"""Support for Wink scenes."""
|
|
import logging
|
|
from typing import Any
|
|
|
|
import pywink
|
|
|
|
from homeassistant.components.scene import Scene
|
|
|
|
from . import DOMAIN, WinkDevice
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Wink platform."""
|
|
|
|
for scene in pywink.get_scenes():
|
|
_id = scene.object_id() + scene.name()
|
|
if _id not in hass.data[DOMAIN]["unique_ids"]:
|
|
add_entities([WinkScene(scene, hass)])
|
|
|
|
|
|
class WinkScene(WinkDevice, Scene):
|
|
"""Representation of a Wink shortcut/scene."""
|
|
|
|
def __init__(self, wink, hass):
|
|
"""Initialize the Wink device."""
|
|
super().__init__(wink, hass)
|
|
hass.data[DOMAIN]["entities"]["scene"].append(self)
|
|
|
|
async def async_added_to_hass(self):
|
|
"""Call when entity is added to hass."""
|
|
self.hass.data[DOMAIN]["entities"]["scene"].append(self)
|
|
|
|
def activate(self, **kwargs: Any) -> None:
|
|
"""Activate the scene."""
|
|
self.wink.activate()
|