core/homeassistant/components/sensor/wink.py

91 lines
3.1 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 asyncio
import logging
from homeassistant.const import TEMP_CELSIUS
from homeassistant.helpers.entity import Entity
from homeassistant.components.wink import WinkDevice, DOMAIN
2016-09-20 07:05:54 +00:00
DEPENDENCIES = ['wink']
_LOGGER = logging.getLogger(__name__)
SENSOR_TYPES = ['temperature', 'humidity', 'balance', 'proximity']
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):
"""Set up the Wink platform."""
import pywink
for sensor in pywink.get_sensors():
_id = sensor.object_id() + sensor.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
if sensor.capability() in SENSOR_TYPES:
add_devices([WinkSensorDevice(sensor, hass)])
for eggtray in pywink.get_eggtrays():
_id = eggtray.object_id() + eggtray.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkSensorDevice(eggtray, hass)])
for tank in pywink.get_propane_tanks():
_id = tank.object_id() + tank.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkSensorDevice(tank, hass)])
2016-09-20 07:05:54 +00:00
for piggy_bank in pywink.get_piggy_banks():
_id = piggy_bank.object_id() + piggy_bank.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
try:
if piggy_bank.capability() in SENSOR_TYPES:
add_devices([WinkSensorDevice(piggy_bank, hass)])
except AttributeError:
_LOGGER.info("Device is not a sensor")
2016-09-20 07:05:54 +00:00
2016-06-29 21:16:53 +00:00
class WinkSensorDevice(WinkDevice, Entity):
2016-03-08 15:46:34 +00:00
"""Representation of a Wink sensor."""
def __init__(self, wink, hass):
2016-06-29 21:16:53 +00:00
"""Initialize the Wink device."""
super().__init__(wink, hass)
self.capability = self.wink.capability()
2017-01-25 05:11:18 +00:00
if self.wink.unit() == '°':
2016-04-20 03:30:44 +00:00
self._unit_of_measurement = TEMP_CELSIUS
else:
2017-01-25 05:11:18 +00:00
self._unit_of_measurement = self.wink.unit()
@asyncio.coroutine
def async_added_to_hass(self):
"""Callback when entity is added to hass."""
self.hass.data[DOMAIN]['entities']['sensor'].append(self)
@property
def state(self):
2016-03-08 15:46:34 +00:00
"""Return the state."""
state = None
if self.capability == 'humidity':
2017-01-25 05:11:18 +00:00
if self.wink.state() is not None:
state = round(self.wink.state())
elif self.capability == 'temperature':
2017-01-25 05:11:18 +00:00
if self.wink.state() is not None:
state = round(self.wink.state(), 1)
elif self.capability == 'balance':
2017-01-25 05:11:18 +00:00
if self.wink.state() is not None:
state = round(self.wink.state() / 100, 2)
elif self.capability == 'proximity':
2017-01-25 05:11:18 +00:00
if self.wink.state() is not None:
state = self.wink.state()
else:
2017-01-25 05:11:18 +00:00
state = self.wink.state()
return state
@property
def unit_of_measurement(self):
2016-03-08 15:46:34 +00:00
"""Return the unit of measurement of this entity, if any."""
return self._unit_of_measurement