2015-03-09 01:14:44 +11:00
|
|
|
"""
|
2015-05-13 19:18:30 +02:00
|
|
|
homeassistant.components.sensor.vera
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-03-09 01:14:44 +11:00
|
|
|
Support for Vera sensors.
|
2015-03-08 23:52:50 +11:00
|
|
|
|
2015-10-20 22:08:06 +02:00
|
|
|
For more details about this platform, please refer to the documentation at
|
2015-11-09 13:12:18 +01:00
|
|
|
https://home-assistant.io/components/sensor.vera/
|
2015-03-08 23:52:50 +11:00
|
|
|
"""
|
2015-03-02 21:09:00 +11:00
|
|
|
import logging
|
2015-03-09 08:45:20 +11:00
|
|
|
from requests.exceptions import RequestException
|
2015-05-18 18:54:25 +10:00
|
|
|
import homeassistant.util.dt as dt_util
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2015-03-21 19:16:13 -07:00
|
|
|
from homeassistant.helpers.entity import Entity
|
2015-03-09 08:10:31 +11:00
|
|
|
from homeassistant.const import (
|
2015-03-30 00:51:03 +11: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-08 20:11:25 -07:00
|
|
|
|
2016-01-15 11:45:17 +00:00
|
|
|
REQUIREMENTS = ['pyvera==0.2.5']
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2015-03-08 23:52:50 +11:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2015-03-09 01:58:11 +11:00
|
|
|
|
2015-03-09 01:14:44 +11:00
|
|
|
# pylint: disable=unused-argument
|
2015-03-02 21:09:00 +11:00
|
|
|
def get_devices(hass, config):
|
|
|
|
""" Find and return Vera Sensors. """
|
2015-09-08 20:11:25 -07:00
|
|
|
import pyvera as veraApi
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2015-03-09 07:03:56 +11: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 23:52:50 +11:00
|
|
|
|
2015-03-09 08:34:06 +11:00
|
|
|
device_data = config.get('device_data', {})
|
2015-03-09 07:03:56 +11: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-09 07:03:56 +11:00
|
|
|
devices = []
|
|
|
|
try:
|
|
|
|
devices = vera_controller.get_devices(categories)
|
2015-03-09 09:11:59 +11:00
|
|
|
except RequestException:
|
2015-03-09 07:46:26 +11:00
|
|
|
# There was a network related error connecting to the vera controller
|
2015-03-09 09:11:59 +11:00
|
|
|
_LOGGER.exception("Error communicating with Vera API")
|
2015-03-09 07:03:56 +11: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-09 09:11:59 +11:00
|
|
|
exclude = extra_data.get('exclude', False)
|
2015-03-09 07:03:56 +11: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 21:09:00 +11:00
|
|
|
|
|
|
|
return vera_sensors
|
|
|
|
|
2015-03-09 01:58:11 +11:00
|
|
|
|
2015-03-07 12:59:13 +11:00
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
2015-05-13 19:18:30 +02:00
|
|
|
""" Performs setup for Vera controller devices. """
|
2015-03-07 12:59:13 +11:00
|
|
|
add_devices(get_devices(hass, config))
|
|
|
|
|
2015-03-09 01:58:11 +11:00
|
|
|
|
2015-03-21 19:16:13 -07:00
|
|
|
class VeraSensor(Entity):
|
2015-05-13 19:18:30 +02:00
|
|
|
""" Represents a Vera Sensor. """
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2015-12-31 12:16:03 +00:00
|
|
|
def __init__(self, vera_device, controller, extra_data=None):
|
2015-03-02 21:09:00 +11:00
|
|
|
self.vera_device = vera_device
|
2015-12-31 12:16:03 +00:00
|
|
|
self.controller = controller
|
2015-03-09 01:14:44 +11:00
|
|
|
self.extra_data = extra_data
|
2015-03-09 07:15:41 +11:00
|
|
|
if self.extra_data and self.extra_data.get('name'):
|
|
|
|
self._name = self.extra_data.get('name')
|
2015-03-09 08:34:06 +11:00
|
|
|
else:
|
|
|
|
self._name = self.vera_device.name
|
2015-03-09 15:16:02 +11:00
|
|
|
self.current_value = ''
|
2015-03-30 00:51:03 +11:00
|
|
|
self._temperature_units = None
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2016-01-09 22:58:28 +00:00
|
|
|
self.controller.register(vera_device, self._update_callback)
|
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 21:09:00 +11: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 21:09:00 +11:00
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
return self.current_value
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2015-03-08 23:52:50 +11:00
|
|
|
""" Get the mame of the sensor. """
|
2015-03-09 07:15:41 +11:00
|
|
|
return self._name
|
2015-03-02 21:09:00 +11:00
|
|
|
|
2015-03-30 00:51:03 +11: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-30 00:51:03 +11:00
|
|
|
|
2015-03-02 21:09:00 +11:00
|
|
|
@property
|
|
|
|
def state_attributes(self):
|
2015-11-29 13:49:05 -08:00
|
|
|
attr = {}
|
2015-03-02 21:09:00 +11:00
|
|
|
if self.vera_device.has_battery:
|
2015-03-09 07:11:35 +11:00
|
|
|
attr[ATTR_BATTERY_LEVEL] = self.vera_device.battery_level + '%'
|
2015-03-02 21:09:00 +11:00
|
|
|
|
|
|
|
if self.vera_device.is_armable:
|
2016-01-09 21:13:34 +00:00
|
|
|
armed = self.vera_device.get_value('Armed')
|
2015-03-09 08:10:31 +11:00
|
|
|
attr[ATTR_ARMED] = 'True' if armed == '1' else 'False'
|
2015-03-02 21:09:00 +11:00
|
|
|
|
|
|
|
if self.vera_device.is_trippable:
|
2016-01-09 21:13:34 +00:00
|
|
|
last_tripped = self.vera_device.get_value('LastTrip')
|
2015-05-18 18:54:25 +10:00
|
|
|
if last_tripped is not None:
|
|
|
|
utc_time = dt_util.utc_from_timestamp(int(last_tripped))
|
2015-05-19 00:31:59 +10:00
|
|
|
attr[ATTR_LAST_TRIP_TIME] = dt_util.datetime_to_str(
|
2015-05-18 18:54:25 +10:00
|
|
|
utc_time)
|
|
|
|
else:
|
|
|
|
attr[ATTR_LAST_TRIP_TIME] = None
|
2016-01-09 21:13:34 +00:00
|
|
|
tripped = self.vera_device.get_value('Tripped')
|
2015-03-09 08:10:31 +11:00
|
|
|
attr[ATTR_TRIPPED] = 'True' if tripped == '1' else 'False'
|
2015-03-02 21:09:00 +11: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 21:09:00 +11:00
|
|
|
def update(self):
|
|
|
|
if self.vera_device.category == "Temperature Sensor":
|
2015-03-09 01:14:44 +11:00
|
|
|
current_temp = self.vera_device.get_value('CurrentTemperature')
|
2016-01-15 10:52:58 +00:00
|
|
|
vera_temp_units = (
|
|
|
|
self.vera_device.vera_controller.temperature_units)
|
2015-03-30 00:51:03 +11: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 21:09:00 +11:00
|
|
|
elif self.vera_device.category == "Light Sensor":
|
|
|
|
self.current_value = self.vera_device.get_value('CurrentLevel')
|
2016-01-15 09:21:48 +00:00
|
|
|
elif self.vera_device.category == "Humidity Sensor":
|
|
|
|
self.current_value = self.vera_device.get_value('CurrentLevel')
|
2015-03-02 21:09:00 +11:00
|
|
|
elif self.vera_device.category == "Sensor":
|
2016-01-09 21:13:34 +00:00
|
|
|
tripped = self.vera_device.get_value('Tripped')
|
2015-03-02 21:09:00 +11:00
|
|
|
self.current_value = 'Tripped' if tripped == '1' else 'Not Tripped'
|
|
|
|
else:
|
|
|
|
self.current_value = 'Unknown'
|