2015-03-08 14:14:44 +00:00
|
|
|
"""
|
2015-05-13 17:18:30 +00:00
|
|
|
homeassistant.components.sensor.vera
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-03-08 14:14:44 +00:00
|
|
|
Support for Vera sensors.
|
2015-03-08 12:52:50 +00:00
|
|
|
|
2015-10-20 20:08:06 +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/sensor.vera/
|
2015-03-08 12:52:50 +00:00
|
|
|
"""
|
2015-03-02 10:09:00 +00:00
|
|
|
import logging
|
2015-03-08 21:45:20 +00:00
|
|
|
from requests.exceptions import RequestException
|
2015-05-18 08:54:25 +00:00
|
|
|
import homeassistant.util.dt as dt_util
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2015-03-22 02:16:13 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
2015-03-08 21:10:31 +00:00
|
|
|
from homeassistant.const import (
|
2015-03-29 13:51:03 +00:00
|
|
|
ATTR_BATTERY_LEVEL, ATTR_TRIPPED, ATTR_ARMED, ATTR_LAST_TRIP_TIME,
|
2015-12-31 12:25:24 +00:00
|
|
|
TEMP_CELCIUS, TEMP_FAHRENHEIT, EVENT_HOMEASSISTANT_STOP)
|
2015-09-09 03:11:25 +00:00
|
|
|
|
2016-02-06 08:18:12 +00:00
|
|
|
REQUIREMENTS = ['pyvera==0.2.8']
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2015-03-08 12:52:50 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2015-03-08 14:58:11 +00:00
|
|
|
|
2015-03-08 14:14:44 +00:00
|
|
|
# pylint: disable=unused-argument
|
2015-03-02 10:09:00 +00:00
|
|
|
def get_devices(hass, config):
|
|
|
|
""" Find and return Vera Sensors. """
|
2015-09-09 03:11:25 +00:00
|
|
|
import pyvera as veraApi
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2015-03-08 20:03:56 +00:00
|
|
|
base_url = config.get('vera_controller_url')
|
|
|
|
if not base_url:
|
|
|
|
_LOGGER.error(
|
|
|
|
"The required parameter 'vera_controller_url'"
|
|
|
|
" was not found in config"
|
|
|
|
)
|
|
|
|
return False
|
2015-03-08 12:52:50 +00:00
|
|
|
|
2015-03-08 21:34:06 +00:00
|
|
|
device_data = config.get('device_data', {})
|
2015-03-08 20:03:56 +00:00
|
|
|
|
2015-12-31 12:16:03 +00:00
|
|
|
vera_controller, created = veraApi.init_controller(base_url)
|
|
|
|
|
|
|
|
if created:
|
|
|
|
def stop_subscription(event):
|
|
|
|
""" Shutdown Vera subscriptions and subscription thread on exit"""
|
|
|
|
_LOGGER.info("Shutting down subscriptions.")
|
|
|
|
vera_controller.stop()
|
|
|
|
|
|
|
|
hass.bus.listen_once(EVENT_HOMEASSISTANT_STOP, stop_subscription)
|
|
|
|
|
2016-01-15 09:21:48 +00:00
|
|
|
categories = ['Temperature Sensor',
|
|
|
|
'Light Sensor',
|
|
|
|
'Humidity Sensor',
|
|
|
|
'Sensor']
|
2015-03-08 20:03:56 +00:00
|
|
|
devices = []
|
|
|
|
try:
|
|
|
|
devices = vera_controller.get_devices(categories)
|
2015-03-08 22:11:59 +00:00
|
|
|
except RequestException:
|
2015-03-08 20:46:26 +00:00
|
|
|
# There was a network related error connecting to the vera controller
|
2015-03-08 22:11:59 +00:00
|
|
|
_LOGGER.exception("Error communicating with Vera API")
|
2015-03-08 20:03:56 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
vera_sensors = []
|
|
|
|
for device in devices:
|
2016-01-10 12:30:47 +00:00
|
|
|
extra_data = device_data.get(device.device_id, {})
|
2015-03-08 22:11:59 +00:00
|
|
|
exclude = extra_data.get('exclude', False)
|
2015-03-08 20:03:56 +00:00
|
|
|
|
|
|
|
if exclude is not True:
|
2015-12-31 12:25:24 +00:00
|
|
|
vera_sensors.append(
|
|
|
|
VeraSensor(device, vera_controller, extra_data))
|
2015-03-02 10:09:00 +00:00
|
|
|
|
|
|
|
return vera_sensors
|
|
|
|
|
2015-03-08 14:58:11 +00:00
|
|
|
|
2015-03-07 01:59:13 +00:00
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
2015-05-13 17:18:30 +00:00
|
|
|
""" Performs setup for Vera controller devices. """
|
2015-03-07 01:59:13 +00:00
|
|
|
add_devices(get_devices(hass, config))
|
|
|
|
|
2015-03-08 14:58:11 +00:00
|
|
|
|
2015-03-22 02:16:13 +00:00
|
|
|
class VeraSensor(Entity):
|
2015-05-13 17:18:30 +00:00
|
|
|
""" Represents a Vera Sensor. """
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2015-12-31 12:16:03 +00:00
|
|
|
def __init__(self, vera_device, controller, extra_data=None):
|
2015-03-02 10:09:00 +00:00
|
|
|
self.vera_device = vera_device
|
2015-12-31 12:16:03 +00:00
|
|
|
self.controller = controller
|
2015-03-08 14:14:44 +00:00
|
|
|
self.extra_data = extra_data
|
2015-03-08 20:15:41 +00:00
|
|
|
if self.extra_data and self.extra_data.get('name'):
|
|
|
|
self._name = self.extra_data.get('name')
|
2015-03-08 21:34:06 +00:00
|
|
|
else:
|
|
|
|
self._name = self.vera_device.name
|
2015-03-09 04:16:02 +00:00
|
|
|
self.current_value = ''
|
2015-03-29 13:51:03 +00:00
|
|
|
self._temperature_units = None
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2016-01-09 22:58:28 +00:00
|
|
|
self.controller.register(vera_device, self._update_callback)
|
2016-01-15 21:30:58 +00:00
|
|
|
self.update()
|
2015-12-31 12:16:03 +00:00
|
|
|
|
|
|
|
def _update_callback(self, _device):
|
|
|
|
""" Called by the vera device callback to update state. """
|
|
|
|
self.update_ha_state(True)
|
|
|
|
|
2015-03-02 10:09:00 +00:00
|
|
|
def __str__(self):
|
2016-01-10 12:30:47 +00:00
|
|
|
return "%s %s %s" % (self.name, self.vera_device.device_id, self.state)
|
2015-03-02 10:09:00 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
return self.current_value
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2015-03-08 12:52:50 +00:00
|
|
|
""" Get the mame of the sensor. """
|
2015-03-08 20:15:41 +00:00
|
|
|
return self._name
|
2015-03-02 10:09:00 +00:00
|
|
|
|
2015-03-29 13:51:03 +00:00
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
|
|
|
""" Unit of measurement of this entity, if any. """
|
2016-01-15 09:21:48 +00:00
|
|
|
if self.vera_device.category == "Temperature Sensor":
|
|
|
|
return self._temperature_units
|
|
|
|
elif self.vera_device.category == "Light Sensor":
|
|
|
|
return 'lux'
|
|
|
|
elif self.vera_device.category == "Humidity Sensor":
|
|
|
|
return '%'
|
2015-03-29 13:51:03 +00:00
|
|
|
|
2015-03-02 10:09:00 +00:00
|
|
|
@property
|
2016-02-07 06:28:29 +00:00
|
|
|
def device_state_attributes(self):
|
2015-11-29 21:49:05 +00:00
|
|
|
attr = {}
|
2015-03-02 10:09:00 +00:00
|
|
|
if self.vera_device.has_battery:
|
2015-03-08 20:11:35 +00:00
|
|
|
attr[ATTR_BATTERY_LEVEL] = self.vera_device.battery_level + '%'
|
2015-03-02 10:09:00 +00:00
|
|
|
|
|
|
|
if self.vera_device.is_armable:
|
2016-01-15 21:30:58 +00:00
|
|
|
armed = self.vera_device.is_armed
|
2016-01-15 21:42:51 +00:00
|
|
|
attr[ATTR_ARMED] = 'True' if armed else 'False'
|
2015-03-02 10:09:00 +00:00
|
|
|
|
|
|
|
if self.vera_device.is_trippable:
|
2016-01-15 21:30:58 +00:00
|
|
|
last_tripped = self.vera_device.last_trip
|
2015-05-18 08:54:25 +00:00
|
|
|
if last_tripped is not None:
|
|
|
|
utc_time = dt_util.utc_from_timestamp(int(last_tripped))
|
2015-05-18 14:31:59 +00:00
|
|
|
attr[ATTR_LAST_TRIP_TIME] = dt_util.datetime_to_str(
|
2015-05-18 08:54:25 +00:00
|
|
|
utc_time)
|
|
|
|
else:
|
|
|
|
attr[ATTR_LAST_TRIP_TIME] = None
|
2016-01-15 21:30:58 +00:00
|
|
|
tripped = self.vera_device.is_tripped
|
2016-01-15 21:42:51 +00:00
|
|
|
attr[ATTR_TRIPPED] = 'True' if tripped else 'False'
|
2015-03-02 10:09:00 +00:00
|
|
|
|
|
|
|
attr['Vera Device Id'] = self.vera_device.vera_device_id
|
|
|
|
return attr
|
|
|
|
|
2015-12-31 19:15:21 +00:00
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
""" Tells Home Assistant not to poll this entity. """
|
|
|
|
return False
|
|
|
|
|
2015-03-02 10:09:00 +00:00
|
|
|
def update(self):
|
|
|
|
if self.vera_device.category == "Temperature Sensor":
|
2016-01-15 21:30:58 +00:00
|
|
|
current_temp = self.vera_device.temperature
|
2016-01-15 10:52:58 +00:00
|
|
|
vera_temp_units = (
|
|
|
|
self.vera_device.vera_controller.temperature_units)
|
2015-03-29 13:51:03 +00:00
|
|
|
|
|
|
|
if vera_temp_units == 'F':
|
|
|
|
self._temperature_units = TEMP_FAHRENHEIT
|
|
|
|
else:
|
|
|
|
self._temperature_units = TEMP_CELCIUS
|
|
|
|
|
|
|
|
if self.hass:
|
|
|
|
temp = self.hass.config.temperature(
|
|
|
|
current_temp,
|
|
|
|
self._temperature_units)
|
|
|
|
|
|
|
|
current_temp, self._temperature_units = temp
|
|
|
|
|
|
|
|
self.current_value = current_temp
|
2015-03-02 10:09:00 +00:00
|
|
|
elif self.vera_device.category == "Light Sensor":
|
2016-01-15 21:30:58 +00:00
|
|
|
self.current_value = self.vera_device.light
|
2016-01-15 09:21:48 +00:00
|
|
|
elif self.vera_device.category == "Humidity Sensor":
|
2016-01-15 21:30:58 +00:00
|
|
|
self.current_value = self.vera_device.humidity
|
2015-03-02 10:09:00 +00:00
|
|
|
elif self.vera_device.category == "Sensor":
|
2016-01-15 21:30:58 +00:00
|
|
|
tripped = self.vera_device.is_tripped
|
|
|
|
self.current_value = 'Tripped' if tripped else 'Not Tripped'
|
2015-03-02 10:09:00 +00:00
|
|
|
else:
|
|
|
|
self.current_value = 'Unknown'
|