hass-core/homeassistant/components/binary_sensor/wink.py

72 lines
2.2 KiB
Python
Raw Normal View History

"""
Support for Wink sensors.
For more details about this platform, please refer to the documentation at
at https://home-assistant.io/components/sensor.wink/
"""
import logging
from homeassistant.components.binary_sensor import BinarySensorDevice
2016-06-29 17:16:53 -04:00
from homeassistant.components.sensor.wink import WinkDevice
from homeassistant.const import CONF_ACCESS_TOKEN
from homeassistant.helpers.entity import Entity
2016-06-29 17:16:53 -04:00
from homeassistant.loader import get_component
2016-07-02 13:04:51 -04:00
REQUIREMENTS = ['python-wink==0.7.8', 'pubnub==3.7.6']
# These are the available sensors mapped to binary_sensor class
SENSOR_TYPES = {
"opened": "opening",
"brightness": "light",
"vibration": "vibration",
"loudness": "sound"
}
def setup_platform(hass, config, add_devices, discovery_info=None):
2016-07-13 14:47:29 +02:00
"""Setup the Wink binary sensor platform."""
import pywink
if discovery_info is None:
token = config.get(CONF_ACCESS_TOKEN)
if token is None:
logging.getLogger(__name__).error(
"Missing wink access_token. "
"Get one at https://winkbearertoken.appspot.com/")
return
pywink.set_bearer_token(token)
for sensor in pywink.get_sensors():
if sensor.capability() in SENSOR_TYPES:
add_devices([WinkBinarySensorDevice(sensor)])
2016-06-29 17:16:53 -04:00
class WinkBinarySensorDevice(WinkDevice, BinarySensorDevice, Entity):
2016-07-13 14:47:29 +02:00
"""Representation of a Wink binary sensor."""
def __init__(self, wink):
2016-03-07 20:21:08 +01:00
"""Initialize the Wink binary sensor."""
2016-06-29 17:16:53 -04:00
super().__init__(wink)
wink = get_component('wink')
self._unit_of_measurement = self.wink.UNIT
self.capability = self.wink.capability()
@property
def is_on(self):
2016-03-07 20:21:08 +01:00
"""Return true if the binary sensor is on."""
if self.capability == "loudness":
return self.wink.loudness_boolean()
elif self.capability == "vibration":
return self.wink.vibration_boolean()
elif self.capability == "brightness":
return self.wink.brightness_boolean()
else:
return self.wink.state()
@property
def sensor_class(self):
"""Return the class of this sensor, from SENSOR_CLASSES."""
return SENSOR_TYPES.get(self.capability)