core/homeassistant/components/wink/switch.py

64 lines
2.1 KiB
Python
Raw Normal View History

"""Support for Wink switches."""
import logging
2016-06-29 21:16:53 +00:00
from homeassistant.helpers.entity import ToggleEntity
from . import DOMAIN, WinkDevice
_LOGGER = logging.getLogger(__name__)
2015-12-17 03:45:58 +00:00
def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up the Wink platform."""
import pywink
for switch in pywink.get_switches():
_id = switch.object_id() + switch.name()
2019-07-31 19:25:30 +00:00
if _id not in hass.data[DOMAIN]["unique_ids"]:
add_entities([WinkToggleDevice(switch, hass)])
2017-01-25 05:11:18 +00:00
for switch in pywink.get_powerstrips():
_id = switch.object_id() + switch.name()
2019-07-31 19:25:30 +00:00
if _id not in hass.data[DOMAIN]["unique_ids"]:
add_entities([WinkToggleDevice(switch, hass)])
2017-01-25 05:11:18 +00:00
for sprinkler in pywink.get_sprinklers():
_id = sprinkler.object_id() + sprinkler.name()
2019-07-31 19:25:30 +00:00
if _id not in hass.data[DOMAIN]["unique_ids"]:
add_entities([WinkToggleDevice(sprinkler, hass)])
for switch in pywink.get_binary_switch_groups():
_id = switch.object_id() + switch.name()
2019-07-31 19:25:30 +00:00
if _id not in hass.data[DOMAIN]["unique_ids"]:
add_entities([WinkToggleDevice(switch, hass)])
2016-06-29 21:16:53 +00:00
class WinkToggleDevice(WinkDevice, ToggleEntity):
2016-09-20 07:05:54 +00:00
"""Representation of a Wink toggle device."""
2016-06-29 21:16:53 +00:00
async def async_added_to_hass(self):
"""Call when entity is added to hass."""
2019-07-31 19:25:30 +00:00
self.hass.data[DOMAIN]["entities"]["switch"].append(self)
2016-06-29 21:16:53 +00:00
@property
def is_on(self):
"""Return true if device is on."""
return self.wink.state()
def turn_on(self, **kwargs):
"""Turn the device on."""
self.wink.set_state(True)
def turn_off(self, **kwargs):
2016-06-29 21:16:53 +00:00
"""Turn the device off."""
self.wink.set_state(False)
@property
def device_state_attributes(self):
"""Return the state attributes."""
attributes = super(WinkToggleDevice, self).device_state_attributes
try:
event = self.wink.last_event()
if event is not None:
attributes["last_event"] = event
except AttributeError:
pass
return attributes