2019-02-13 20:21:14 +00:00
|
|
|
"""Support for Wink sensors."""
|
2015-01-20 01:16:04 +00:00
|
|
|
import logging
|
|
|
|
|
2016-11-06 15:27:15 +00:00
|
|
|
from homeassistant.const import TEMP_CELSIUS
|
2015-01-20 01:16:04 +00:00
|
|
|
|
2019-03-21 05:56:46 +00:00
|
|
|
from . import DOMAIN, WinkDevice
|
|
|
|
|
2017-02-02 06:43:12 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2016-02-23 19:20:54 +00:00
|
|
|
|
2018-01-21 06:35:38 +00:00
|
|
|
DEPENDENCIES = ['wink']
|
|
|
|
|
2016-10-02 03:45:39 +00:00
|
|
|
SENSOR_TYPES = ['temperature', 'humidity', 'balance', 'proximity']
|
2015-01-20 01:16:04 +00:00
|
|
|
|
2015-12-17 03:31:34 +00:00
|
|
|
|
2018-08-24 14:37:30 +00:00
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
2016-10-30 08:58:34 +00:00
|
|
|
"""Set up the Wink platform."""
|
2015-07-20 07:41:57 +00:00
|
|
|
import pywink
|
|
|
|
|
2016-02-23 19:20:54 +00:00
|
|
|
for sensor in pywink.get_sensors():
|
2017-02-02 06:43:12 +00:00
|
|
|
_id = sensor.object_id() + sensor.name()
|
|
|
|
if _id not in hass.data[DOMAIN]['unique_ids']:
|
|
|
|
if sensor.capability() in SENSOR_TYPES:
|
2018-08-24 14:37:30 +00:00
|
|
|
add_entities([WinkSensorDevice(sensor, hass)])
|
2016-02-23 19:20:54 +00:00
|
|
|
|
2016-11-30 21:12:26 +00:00
|
|
|
for eggtray in pywink.get_eggtrays():
|
2017-02-02 06:43:12 +00:00
|
|
|
_id = eggtray.object_id() + eggtray.name()
|
|
|
|
if _id not in hass.data[DOMAIN]['unique_ids']:
|
2018-08-24 14:37:30 +00:00
|
|
|
add_entities([WinkSensorDevice(eggtray, hass)])
|
2017-02-02 06:43:12 +00:00
|
|
|
|
|
|
|
for tank in pywink.get_propane_tanks():
|
|
|
|
_id = tank.object_id() + tank.name()
|
|
|
|
if _id not in hass.data[DOMAIN]['unique_ids']:
|
2018-08-24 14:37:30 +00:00
|
|
|
add_entities([WinkSensorDevice(tank, hass)])
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2016-09-20 07:05:54 +00:00
|
|
|
for piggy_bank in pywink.get_piggy_banks():
|
2017-02-02 06:43:12 +00:00
|
|
|
_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:
|
2018-08-24 14:37:30 +00:00
|
|
|
add_entities([WinkSensorDevice(piggy_bank, hass)])
|
2017-02-02 06:43:12 +00:00
|
|
|
except AttributeError:
|
|
|
|
_LOGGER.info("Device is not a sensor")
|
2016-09-20 07:05:54 +00:00
|
|
|
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2019-02-06 02:26:54 +00:00
|
|
|
class WinkSensorDevice(WinkDevice):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Representation of a Wink sensor."""
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2016-11-30 21:12:26 +00:00
|
|
|
def __init__(self, wink, hass):
|
2016-06-29 21:16:53 +00:00
|
|
|
"""Initialize the Wink device."""
|
2016-11-30 21:12:26 +00:00
|
|
|
super().__init__(wink, hass)
|
2016-02-23 19:20:54 +00:00
|
|
|
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
|
2016-02-23 19:20:54 +00:00
|
|
|
else:
|
2017-01-25 05:11:18 +00:00
|
|
|
self._unit_of_measurement = self.wink.unit()
|
2015-03-19 06:02:58 +00:00
|
|
|
|
2018-10-01 06:55:43 +00:00
|
|
|
async def async_added_to_hass(self):
|
2018-01-21 06:35:38 +00:00
|
|
|
"""Call when entity is added to hass."""
|
2017-05-13 18:09:00 +00:00
|
|
|
self.hass.data[DOMAIN]['entities']['sensor'].append(self)
|
|
|
|
|
2015-03-19 06:02:58 +00:00
|
|
|
@property
|
|
|
|
def state(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the state."""
|
2016-11-06 15:27:15 +00:00
|
|
|
state = None
|
2016-10-30 08:58:34 +00:00
|
|
|
if self.capability == 'humidity':
|
2017-01-25 05:11:18 +00:00
|
|
|
if self.wink.state() is not None:
|
|
|
|
state = round(self.wink.state())
|
2016-10-30 08:58:34 +00:00
|
|
|
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)
|
2016-10-30 08:58:34 +00:00
|
|
|
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)
|
2016-10-30 08:58:34 +00:00
|
|
|
elif self.capability == 'proximity':
|
2017-01-25 05:11:18 +00:00
|
|
|
if self.wink.state() is not None:
|
|
|
|
state = self.wink.state()
|
2016-02-23 19:20:54 +00:00
|
|
|
else:
|
2017-01-25 05:11:18 +00:00
|
|
|
state = self.wink.state()
|
2016-11-06 15:27:15 +00:00
|
|
|
return state
|
2016-02-23 19:20:54 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the unit of measurement of this entity, if any."""
|
2016-02-23 19:20:54 +00:00
|
|
|
return self._unit_of_measurement
|
2019-02-06 02:26:54 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
super_attrs = super().device_state_attributes
|
|
|
|
try:
|
|
|
|
super_attrs['egg_times'] = self.wink.eggs()
|
|
|
|
except AttributeError:
|
2019-02-07 05:22:44 +00:00
|
|
|
# Ignore error, this sensor isn't an eggminder
|
|
|
|
pass
|
2019-02-06 02:26:54 +00:00
|
|
|
return super_attrs
|