core/homeassistant/components/switch/wink.py

72 lines
2.4 KiB
Python
Raw Normal View History

2015-05-13 17:18:30 +00:00
"""
Support for Wink switches.
2015-10-21 08:47:31 +00:00
For more details about this platform, please refer to the documentation at
2015-11-09 12:12:18 +00:00
https://home-assistant.io/components/switch.wink/
2015-05-13 17:18:30 +00:00
"""
import asyncio
from homeassistant.components.wink import WinkDevice, DOMAIN
2016-06-29 21:16:53 +00:00
from homeassistant.helpers.entity import ToggleEntity
2016-09-20 07:05:54 +00:00
DEPENDENCIES = ['wink']
2015-12-17 03:45:58 +00:00
2015-03-01 09:35:58 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Set up the Wink platform."""
import pywink
for switch in pywink.get_switches():
_id = switch.object_id() + switch.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkToggleDevice(switch, hass)])
2017-01-25 05:11:18 +00:00
for switch in pywink.get_powerstrips():
_id = switch.object_id() + switch.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkToggleDevice(switch, hass)])
for switch in pywink.get_sirens():
_id = switch.object_id() + switch.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkToggleDevice(switch, hass)])
2017-01-25 05:11:18 +00:00
for sprinkler in pywink.get_sprinklers():
_id = sprinkler.object_id() + sprinkler.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkToggleDevice(sprinkler, hass)])
for switch in pywink.get_binary_switch_groups():
_id = switch.object_id() + switch.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([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
@asyncio.coroutine
def async_added_to_hass(self):
"""Callback when entity is added to hass."""
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):
"""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()
attributes["last_event"] = event
except AttributeError:
pass
return attributes