36 lines
995 B
Python
36 lines
995 B
Python
"""Support for Wink scenes."""
|
|
import logging
|
|
|
|
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."""
|
|
import pywink
|
|
|
|
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):
|
|
"""Activate the scene."""
|
|
self.wink.activate()
|