core/homeassistant/components/sensor/wink.py

89 lines
2.2 KiB
Python
Raw Normal View History

2015-08-06 16:53:44 +00:00
"""
Support for Wink sensors.
2015-10-20 19:29:19 +00:00
2015-11-09 12:12:18 +00:00
For more details about this platform, please refer to the documentation at
at https://home-assistant.io/components/sensor.wink/
2015-08-06 16:53:44 +00:00
"""
import logging
2016-02-19 05:27:50 +00:00
from homeassistant.const import CONF_ACCESS_TOKEN, STATE_CLOSED, STATE_OPEN
from homeassistant.helpers.entity import Entity
2016-02-21 17:01:32 +00:00
REQUIREMENTS = ['python-wink==0.6.1']
2015-12-17 03:31:34 +00:00
2015-03-01 09:35:58 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
2016-02-23 05:21:49 +00:00
"""Sets up the Wink platform."""
import pywink
2015-03-01 09:35:58 +00:00
if discovery_info is None:
token = config.get(CONF_ACCESS_TOKEN)
2015-03-01 09:35:58 +00:00
if token is None:
logging.getLogger(__name__).error(
2015-10-21 08:47:12 +00:00
"Missing wink access_token. "
"Get one at https://winkbearertoken.appspot.com/")
2015-03-01 09:35:58 +00:00
return
2015-03-01 09:35:58 +00:00
pywink.set_bearer_token(token)
2015-03-01 09:35:58 +00:00
add_devices(WinkSensorDevice(sensor) for sensor in pywink.get_sensors())
add_devices(WinkEggMinder(eggtray) for eggtray in pywink.get_eggtrays())
class WinkSensorDevice(Entity):
2016-02-23 05:21:49 +00:00
"""Represents a Wink sensor."""
def __init__(self, wink):
self.wink = wink
@property
def state(self):
2016-02-23 05:21:49 +00:00
"""Returns the state."""
return STATE_OPEN if self.is_open else STATE_CLOSED
@property
def unique_id(self):
2016-02-23 05:21:49 +00:00
"""Returns the id of this wink sensor."""
return "{}.{}".format(self.__class__, self.wink.device_id())
@property
def name(self):
2016-02-23 05:21:49 +00:00
"""Returns the name of the sensor if any."""
return self.wink.name()
def update(self):
2016-02-23 05:21:49 +00:00
"""Update state of the sensor."""
self.wink.update_state()
@property
def is_open(self):
2016-02-23 05:21:49 +00:00
"""True if door is open."""
return self.wink.state()
2015-12-17 03:31:34 +00:00
class WinkEggMinder(Entity):
2016-02-23 05:21:49 +00:00
"""Represents a Wink Egg Minder."""
def __init__(self, wink):
self.wink = wink
@property
def state(self):
2016-02-23 05:21:49 +00:00
"""Returns the state."""
return self.wink.state()
@property
def unique_id(self):
2016-02-23 05:21:49 +00:00
"""Returns the id of this wink Egg Minder."""
return "{}.{}".format(self.__class__, self.wink.device_id())
@property
def name(self):
2016-02-23 05:21:49 +00:00
"""Returns the name of the Egg Minder if any."""
return self.wink.name()
def update(self):
2016-02-23 05:21:49 +00:00
"""Update state of the Egg Minder."""
2015-12-17 03:31:34 +00:00
self.wink.update_state()