mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 16:27:08 +00:00
Merge pull request #820 from balloob/vera-subscriptons
Add ability to respond to events from Vera hub
This commit is contained in:
commit
622a6deb04
@ -14,9 +14,9 @@ from homeassistant.components.switch.vera import VeraSwitch
|
|||||||
|
|
||||||
from homeassistant.components.light import ATTR_BRIGHTNESS
|
from homeassistant.components.light import ATTR_BRIGHTNESS
|
||||||
|
|
||||||
REQUIREMENTS = ['https://github.com/pavoni/home-assistant-vera-api/archive/'
|
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
|
||||||
'efdba4e63d58a30bc9b36d9e01e69858af9130b8.zip'
|
|
||||||
'#python-vera==0.1.1']
|
REQUIREMENTS = ['pyvera==0.2.1']
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -36,10 +36,19 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
|||||||
|
|
||||||
device_data = config.get('device_data', {})
|
device_data = config.get('device_data', {})
|
||||||
|
|
||||||
controller = veraApi.VeraController(base_url)
|
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)
|
||||||
|
|
||||||
devices = []
|
devices = []
|
||||||
try:
|
try:
|
||||||
devices = controller.get_devices([
|
devices = vera_controller.get_devices([
|
||||||
'Switch',
|
'Switch',
|
||||||
'On/Off Switch',
|
'On/Off Switch',
|
||||||
'Dimmable Switch'])
|
'Dimmable Switch'])
|
||||||
@ -54,7 +63,7 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
|||||||
exclude = extra_data.get('exclude', False)
|
exclude = extra_data.get('exclude', False)
|
||||||
|
|
||||||
if exclude is not True:
|
if exclude is not True:
|
||||||
lights.append(VeraLight(device, extra_data))
|
lights.append(VeraLight(device, vera_controller, extra_data))
|
||||||
|
|
||||||
add_devices_callback(lights)
|
add_devices_callback(lights)
|
||||||
|
|
||||||
|
@ -13,11 +13,9 @@ import homeassistant.util.dt as dt_util
|
|||||||
from homeassistant.helpers.entity import Entity
|
from homeassistant.helpers.entity import Entity
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
ATTR_BATTERY_LEVEL, ATTR_TRIPPED, ATTR_ARMED, ATTR_LAST_TRIP_TIME,
|
ATTR_BATTERY_LEVEL, ATTR_TRIPPED, ATTR_ARMED, ATTR_LAST_TRIP_TIME,
|
||||||
TEMP_CELCIUS, TEMP_FAHRENHEIT)
|
TEMP_CELCIUS, TEMP_FAHRENHEIT, EVENT_HOMEASSISTANT_STOP)
|
||||||
|
|
||||||
REQUIREMENTS = ['https://github.com/pavoni/home-assistant-vera-api/archive/'
|
REQUIREMENTS = ['pyvera==0.2.1']
|
||||||
'efdba4e63d58a30bc9b36d9e01e69858af9130b8.zip'
|
|
||||||
'#python-vera==0.1.1']
|
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -37,7 +35,16 @@ def get_devices(hass, config):
|
|||||||
|
|
||||||
device_data = config.get('device_data', {})
|
device_data = config.get('device_data', {})
|
||||||
|
|
||||||
vera_controller = veraApi.VeraController(base_url)
|
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)
|
||||||
|
|
||||||
categories = ['Temperature Sensor', 'Light Sensor', 'Sensor']
|
categories = ['Temperature Sensor', 'Light Sensor', 'Sensor']
|
||||||
devices = []
|
devices = []
|
||||||
try:
|
try:
|
||||||
@ -53,7 +60,8 @@ def get_devices(hass, config):
|
|||||||
exclude = extra_data.get('exclude', False)
|
exclude = extra_data.get('exclude', False)
|
||||||
|
|
||||||
if exclude is not True:
|
if exclude is not True:
|
||||||
vera_sensors.append(VeraSensor(device, extra_data))
|
vera_sensors.append(
|
||||||
|
VeraSensor(device, vera_controller, extra_data))
|
||||||
|
|
||||||
return vera_sensors
|
return vera_sensors
|
||||||
|
|
||||||
@ -66,8 +74,9 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|||||||
class VeraSensor(Entity):
|
class VeraSensor(Entity):
|
||||||
""" Represents a Vera Sensor. """
|
""" Represents a Vera Sensor. """
|
||||||
|
|
||||||
def __init__(self, vera_device, extra_data=None):
|
def __init__(self, vera_device, controller, extra_data=None):
|
||||||
self.vera_device = vera_device
|
self.vera_device = vera_device
|
||||||
|
self.controller = controller
|
||||||
self.extra_data = extra_data
|
self.extra_data = extra_data
|
||||||
if self.extra_data and self.extra_data.get('name'):
|
if self.extra_data and self.extra_data.get('name'):
|
||||||
self._name = self.extra_data.get('name')
|
self._name = self.extra_data.get('name')
|
||||||
@ -76,6 +85,16 @@ class VeraSensor(Entity):
|
|||||||
self.current_value = ''
|
self.current_value = ''
|
||||||
self._temperature_units = None
|
self._temperature_units = None
|
||||||
|
|
||||||
|
self.controller.register(vera_device)
|
||||||
|
self.controller.on(
|
||||||
|
vera_device, self._update_callback)
|
||||||
|
|
||||||
|
def _update_callback(self, _device):
|
||||||
|
""" Called by the vera device callback to update state. """
|
||||||
|
_LOGGER.info(
|
||||||
|
'Subscription update for %s', self.name)
|
||||||
|
self.update_ha_state(True)
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return "%s %s %s" % (self.name, self.vera_device.deviceId, self.state)
|
return "%s %s %s" % (self.name, self.vera_device.deviceId, self.state)
|
||||||
|
|
||||||
@ -117,6 +136,11 @@ class VeraSensor(Entity):
|
|||||||
attr['Vera Device Id'] = self.vera_device.vera_device_id
|
attr['Vera Device Id'] = self.vera_device.vera_device_id
|
||||||
return attr
|
return attr
|
||||||
|
|
||||||
|
@property
|
||||||
|
def should_poll(self):
|
||||||
|
""" Tells Home Assistant not to poll this entity. """
|
||||||
|
return False
|
||||||
|
|
||||||
def update(self):
|
def update(self):
|
||||||
if self.vera_device.category == "Temperature Sensor":
|
if self.vera_device.category == "Temperature Sensor":
|
||||||
self.vera_device.refresh_value('CurrentTemperature')
|
self.vera_device.refresh_value('CurrentTemperature')
|
||||||
|
@ -13,11 +13,13 @@ import homeassistant.util.dt as dt_util
|
|||||||
|
|
||||||
from homeassistant.helpers.entity import ToggleEntity
|
from homeassistant.helpers.entity import ToggleEntity
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
ATTR_BATTERY_LEVEL, ATTR_TRIPPED, ATTR_ARMED, ATTR_LAST_TRIP_TIME)
|
ATTR_BATTERY_LEVEL,
|
||||||
|
ATTR_TRIPPED,
|
||||||
|
ATTR_ARMED,
|
||||||
|
ATTR_LAST_TRIP_TIME,
|
||||||
|
EVENT_HOMEASSISTANT_STOP)
|
||||||
|
|
||||||
REQUIREMENTS = ['https://github.com/pavoni/home-assistant-vera-api/archive/'
|
REQUIREMENTS = ['pyvera==0.2.1']
|
||||||
'efdba4e63d58a30bc9b36d9e01e69858af9130b8.zip'
|
|
||||||
'#python-vera==0.1.1']
|
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -37,7 +39,16 @@ def get_devices(hass, config):
|
|||||||
|
|
||||||
device_data = config.get('device_data', {})
|
device_data = config.get('device_data', {})
|
||||||
|
|
||||||
vera_controller = veraApi.VeraController(base_url)
|
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)
|
||||||
|
|
||||||
devices = []
|
devices = []
|
||||||
try:
|
try:
|
||||||
devices = vera_controller.get_devices([
|
devices = vera_controller.get_devices([
|
||||||
@ -53,7 +64,8 @@ def get_devices(hass, config):
|
|||||||
exclude = extra_data.get('exclude', False)
|
exclude = extra_data.get('exclude', False)
|
||||||
|
|
||||||
if exclude is not True:
|
if exclude is not True:
|
||||||
vera_switches.append(VeraSwitch(device, extra_data))
|
vera_switches.append(
|
||||||
|
VeraSwitch(device, vera_controller, extra_data))
|
||||||
|
|
||||||
return vera_switches
|
return vera_switches
|
||||||
|
|
||||||
@ -66,9 +78,10 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
|||||||
class VeraSwitch(ToggleEntity):
|
class VeraSwitch(ToggleEntity):
|
||||||
""" Represents a Vera Switch. """
|
""" Represents a Vera Switch. """
|
||||||
|
|
||||||
def __init__(self, vera_device, extra_data=None):
|
def __init__(self, vera_device, controller, extra_data=None):
|
||||||
self.vera_device = vera_device
|
self.vera_device = vera_device
|
||||||
self.extra_data = extra_data
|
self.extra_data = extra_data
|
||||||
|
self.controller = controller
|
||||||
if self.extra_data and self.extra_data.get('name'):
|
if self.extra_data and self.extra_data.get('name'):
|
||||||
self._name = self.extra_data.get('name')
|
self._name = self.extra_data.get('name')
|
||||||
else:
|
else:
|
||||||
@ -77,6 +90,16 @@ class VeraSwitch(ToggleEntity):
|
|||||||
# for debouncing status check after command is sent
|
# for debouncing status check after command is sent
|
||||||
self.last_command_send = 0
|
self.last_command_send = 0
|
||||||
|
|
||||||
|
self.controller.register(vera_device)
|
||||||
|
self.controller.on(
|
||||||
|
vera_device, self._update_callback)
|
||||||
|
|
||||||
|
def _update_callback(self, _device):
|
||||||
|
""" Called by the vera device callback to update state. """
|
||||||
|
_LOGGER.info(
|
||||||
|
'Subscription update for %s', self.name)
|
||||||
|
self.update_ha_state(True)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
""" Get the mame of the switch. """
|
""" Get the mame of the switch. """
|
||||||
@ -118,6 +141,11 @@ class VeraSwitch(ToggleEntity):
|
|||||||
self.vera_device.switch_off()
|
self.vera_device.switch_off()
|
||||||
self.is_on_status = False
|
self.is_on_status = False
|
||||||
|
|
||||||
|
@property
|
||||||
|
def should_poll(self):
|
||||||
|
""" Tells Home Assistant not to poll this entity. """
|
||||||
|
return False
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_on(self):
|
def is_on(self):
|
||||||
""" True if device is on. """
|
""" True if device is on. """
|
||||||
|
@ -59,7 +59,7 @@ tellcore-py==1.1.2
|
|||||||
# homeassistant.components.light.vera
|
# homeassistant.components.light.vera
|
||||||
# homeassistant.components.sensor.vera
|
# homeassistant.components.sensor.vera
|
||||||
# homeassistant.components.switch.vera
|
# homeassistant.components.switch.vera
|
||||||
https://github.com/pavoni/home-assistant-vera-api/archive/efdba4e63d58a30bc9b36d9e01e69858af9130b8.zip#python-vera==0.1.1
|
pyvera==0.2.1
|
||||||
|
|
||||||
# homeassistant.components.wink
|
# homeassistant.components.wink
|
||||||
# homeassistant.components.light.wink
|
# homeassistant.components.light.wink
|
||||||
|
Loading…
x
Reference in New Issue
Block a user