Add a light & switch rfxtrx support
This commit is contained in:
parent
3158db9553
commit
321a603bfe
4 changed files with 261 additions and 17 deletions
102
homeassistant/components/switch/rfxtrx.py
Normal file
102
homeassistant/components/switch/rfxtrx.py
Normal file
|
@ -0,0 +1,102 @@
|
|||
"""
|
||||
homeassistant.components.switch.rfxtrx
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Support for Rfxtrx switch.
|
||||
|
||||
Configuration:
|
||||
|
||||
To use Rfxtrx switchs you will need to add the following to your
|
||||
configuration.yaml file.
|
||||
|
||||
switch:
|
||||
platform: rfxtrx
|
||||
|
||||
devices:
|
||||
ac09c4f1: Bedroom Door
|
||||
ac09c4f2: Kitchen Door
|
||||
ac09c4f3: Bathroom Door
|
||||
|
||||
*Optional*
|
||||
|
||||
# Automatic add new switch
|
||||
automatic_add: True
|
||||
|
||||
"""
|
||||
import logging
|
||||
import homeassistant.components.rfxtrx as rfxtrx
|
||||
from RFXtrx import LightingDevice
|
||||
|
||||
from homeassistant.components.switch import SwitchDevice
|
||||
from homeassistant.util import slugify
|
||||
|
||||
REQUIREMENTS = ['https://github.com/Danielhiversen/pyRFXtrx/archive/' +
|
||||
'ec7a1aaddf8270db6e5da1c13d58c1547effd7cf.zip#RFXtrx==0.15']
|
||||
|
||||
DOMAIN = "rfxtrx"
|
||||
|
||||
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
||||
""" Setup the RFXtrx platform. """
|
||||
# Add switch from config file
|
||||
devices = config.get('devices')
|
||||
for entity_id, entity_name in devices.items():
|
||||
if entity_id not in rfxtrx.RFX_DEVICES:
|
||||
new_switch = RfxtrxSwitch(entity_name, False)
|
||||
rfxtrx.RFX_DEVICES[entity_id] = new_switch
|
||||
|
||||
add_devices_callback(rfxtrx.RFX_DEVICES.values())
|
||||
|
||||
def switch_update(event):
|
||||
""" Callback for sensor updates from the RFXtrx gateway. """
|
||||
if isinstance(event.device, LightingDevice):
|
||||
entity_id = '%s-%s' % (event.device.type_string.lower(), slugify(event.device.id_string.lower()))
|
||||
|
||||
# Add entity if not exist and the automatic_add is True
|
||||
if entity_id not in rfxtrx.RFX_DEVICES:
|
||||
automatic_add = config.get('automatic_add', False)
|
||||
if automatic_add:
|
||||
new_switch = RfxtrxSwitch(entity_id, False)
|
||||
rfxtrx.RFX_DEVICES[entity_id] = new_switch
|
||||
add_devices_callback([new_switch])
|
||||
|
||||
# Check if entity exists (previous automatic added)
|
||||
if entity_id in rfxtrx.RFX_DEVICES:
|
||||
if event.values['Command'] == 'On' or event.values['Command'] == 'Off':
|
||||
if event.values['Command'] == 'On':
|
||||
rfxtrx.RFX_DEVICES[entity_id].turn_on()
|
||||
else:
|
||||
rfxtrx.RFX_DEVICES[entity_id].turn_off()
|
||||
|
||||
if switch_update not in rfxtrx.RECEIVED_EVT_SUBSCRIBERS:
|
||||
rfxtrx.RECEIVED_EVT_SUBSCRIBERS.append(switch_update)
|
||||
|
||||
|
||||
class RfxtrxSwitch(SwitchDevice):
|
||||
""" Provides a demo switch. """
|
||||
def __init__(self, name, state):
|
||||
self._name = name
|
||||
self._state = state
|
||||
|
||||
@property
|
||||
def should_poll(self):
|
||||
""" No polling needed for a demo switch. """
|
||||
return False
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
""" Returns the name of the device if any. """
|
||||
return self._name
|
||||
|
||||
@property
|
||||
def is_on(self):
|
||||
""" True if device is on. """
|
||||
return self._state
|
||||
|
||||
def turn_on(self, **kwargs):
|
||||
""" Turn the device on. """
|
||||
self._state = True
|
||||
self.update_ha_state()
|
||||
|
||||
def turn_off(self, **kwargs):
|
||||
""" Turn the device off. """
|
||||
self._state = False
|
||||
self.update_ha_state()
|
Loading…
Add table
Add a link
Reference in a new issue