2015-09-27 09:13:49 +00:00
|
|
|
"""
|
|
|
|
homeassistant.components.switch.rfxtrx
|
2015-10-08 09:09:00 +00:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Support for RFXtrx switches.
|
2015-09-27 09:13:49 +00:00
|
|
|
|
2015-10-08 09:09:00 +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/switch.rfxtrx/
|
2015-09-27 09:13:49 +00:00
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
import homeassistant.components.rfxtrx as rfxtrx
|
2015-11-26 06:52:37 +00:00
|
|
|
import RFXtrx as rfxtrxmod
|
2015-09-27 09:13:49 +00:00
|
|
|
|
|
|
|
from homeassistant.components.switch import SwitchDevice
|
|
|
|
from homeassistant.util import slugify
|
|
|
|
|
2015-11-26 06:52:37 +00:00
|
|
|
from homeassistant.const import ATTR_ENTITY_ID
|
|
|
|
from homeassistant.components.rfxtrx import ATTR_STATE, ATTR_FIREEVENT, ATTR_PACKETID, \
|
|
|
|
ATTR_NAME, EVENT_BUTTON_PRESSED
|
|
|
|
|
|
|
|
|
2015-10-07 17:04:03 +00:00
|
|
|
DEPENDENCIES = ['rfxtrx']
|
2015-09-27 09:13:49 +00:00
|
|
|
|
2015-09-29 06:20:25 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2015-09-27 09:13:49 +00:00
|
|
|
|
|
|
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
|
|
|
""" Setup the RFXtrx platform. """
|
2015-09-27 21:51:19 +00:00
|
|
|
|
2015-09-27 09:13:49 +00:00
|
|
|
# Add switch from config file
|
2015-09-27 21:51:19 +00:00
|
|
|
switchs = []
|
2015-09-27 09:13:49 +00:00
|
|
|
devices = config.get('devices')
|
2015-10-02 20:39:30 +00:00
|
|
|
if devices:
|
|
|
|
for entity_id, entity_info in devices.items():
|
|
|
|
if entity_id not in rfxtrx.RFX_DEVICES:
|
2015-11-26 06:52:37 +00:00
|
|
|
_LOGGER.info("Add %s rfxtrx.switch", entity_info[ATTR_NAME])
|
|
|
|
|
|
|
|
# Check if i must fire event
|
|
|
|
fire_event = entity_info.get(ATTR_FIREEVENT, False)
|
|
|
|
datas = {ATTR_STATE: False, ATTR_FIREEVENT: fire_event}
|
|
|
|
|
|
|
|
rfxobject = rfxtrx.get_rfx_object(entity_info[ATTR_PACKETID])
|
|
|
|
newswitch = RfxtrxSwitch(
|
|
|
|
entity_info[ATTR_NAME], rfxobject, datas)
|
2015-10-06 06:44:15 +00:00
|
|
|
rfxtrx.RFX_DEVICES[entity_id] = newswitch
|
|
|
|
switchs.append(newswitch)
|
2015-09-27 09:13:49 +00:00
|
|
|
|
2015-09-27 21:51:19 +00:00
|
|
|
add_devices_callback(switchs)
|
2015-09-27 09:13:49 +00:00
|
|
|
|
|
|
|
def switch_update(event):
|
|
|
|
""" Callback for sensor updates from the RFXtrx gateway. """
|
2015-11-26 06:52:37 +00:00
|
|
|
if not isinstance(event.device, rfxtrxmod.LightingDevice):
|
2015-10-07 17:15:50 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
# Add entity if not exist and the automatic_add is True
|
|
|
|
entity_id = slugify(event.device.id_string.lower())
|
|
|
|
if entity_id not in rfxtrx.RFX_DEVICES:
|
|
|
|
automatic_add = config.get('automatic_add', False)
|
2015-10-07 17:57:40 +00:00
|
|
|
if not automatic_add:
|
|
|
|
return
|
|
|
|
|
|
|
|
_LOGGER.info(
|
|
|
|
"Automatic add %s rfxtrx.switch (Class: %s Sub: %s)",
|
|
|
|
entity_id,
|
|
|
|
event.device.__class__.__name__,
|
|
|
|
event.device.subtype
|
|
|
|
)
|
|
|
|
pkt_id = "".join("{0:02x}".format(x) for x in event.data)
|
|
|
|
entity_name = "%s : %s" % (entity_id, pkt_id)
|
2015-11-26 06:52:37 +00:00
|
|
|
datas = {ATTR_STATE: False, ATTR_FIREEVENT: False}
|
|
|
|
new_switch = RfxtrxSwitch(entity_name, event, datas)
|
2015-10-07 17:57:40 +00:00
|
|
|
rfxtrx.RFX_DEVICES[entity_id] = new_switch
|
|
|
|
add_devices_callback([new_switch])
|
|
|
|
|
|
|
|
# Check if entity exists or previously added automatically
|
2015-11-26 06:52:37 +00:00
|
|
|
if entity_id in rfxtrx.RFX_DEVICES \
|
|
|
|
and isinstance(rfxtrx.RFX_DEVICES[entity_id], RfxtrxSwitch):
|
2015-11-08 18:02:51 +00:00
|
|
|
_LOGGER.debug(
|
2015-11-08 10:04:29 +00:00
|
|
|
"EntityID: %s switch_update. Command: %s",
|
|
|
|
entity_id,
|
|
|
|
event.values['Command']
|
|
|
|
)
|
2015-10-07 17:15:50 +00:00
|
|
|
if event.values['Command'] == 'On'\
|
|
|
|
or event.values['Command'] == 'Off':
|
2015-11-26 06:52:37 +00:00
|
|
|
|
|
|
|
# Update the rfxtrx device state
|
|
|
|
is_on = event.values['Command'] == 'On'
|
|
|
|
# pylint: disable=protected-access
|
|
|
|
rfxtrx.RFX_DEVICES[entity_id]._state = is_on
|
|
|
|
rfxtrx.RFX_DEVICES[entity_id].update_ha_state()
|
|
|
|
|
|
|
|
# Fire event
|
|
|
|
if rfxtrx.RFX_DEVICES[entity_id].should_fire_event:
|
|
|
|
rfxtrx.RFX_DEVICES[entity_id].hass.bus.fire(
|
|
|
|
EVENT_BUTTON_PRESSED, {
|
|
|
|
ATTR_ENTITY_ID:
|
|
|
|
rfxtrx.RFX_DEVICES[entity_id].entity_id,
|
|
|
|
ATTR_STATE: event.values['Command'].lower()
|
|
|
|
}
|
|
|
|
)
|
2015-10-07 17:15:50 +00:00
|
|
|
|
|
|
|
# Subscribe to main rfxtrx events
|
2015-09-27 09:13:49 +00:00
|
|
|
if switch_update not in rfxtrx.RECEIVED_EVT_SUBSCRIBERS:
|
|
|
|
rfxtrx.RECEIVED_EVT_SUBSCRIBERS.append(switch_update)
|
|
|
|
|
|
|
|
|
|
|
|
class RfxtrxSwitch(SwitchDevice):
|
2015-10-08 09:09:00 +00:00
|
|
|
""" Provides a RFXtrx switch. """
|
2015-11-26 06:52:37 +00:00
|
|
|
def __init__(self, name, event, datas):
|
2015-09-27 09:13:49 +00:00
|
|
|
self._name = name
|
2015-09-29 20:47:22 +00:00
|
|
|
self._event = event
|
2015-11-26 06:52:37 +00:00
|
|
|
self._state = datas[ATTR_STATE]
|
|
|
|
self._should_fire_event = datas[ATTR_FIREEVENT]
|
2015-09-27 09:13:49 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
2015-10-08 09:09:00 +00:00
|
|
|
""" No polling needed for a RFXtrx switch. """
|
2015-09-27 09:13:49 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
""" Returns the name of the device if any. """
|
|
|
|
return self._name
|
|
|
|
|
2015-11-26 06:52:37 +00:00
|
|
|
@property
|
|
|
|
def should_fire_event(self):
|
|
|
|
""" Returns is the device must fire event"""
|
|
|
|
return self._should_fire_event
|
|
|
|
|
2015-09-27 09:13:49 +00:00
|
|
|
@property
|
|
|
|
def is_on(self):
|
2015-11-26 06:52:37 +00:00
|
|
|
""" True if light is on. """
|
2015-09-27 09:13:49 +00:00
|
|
|
return self._state
|
|
|
|
|
|
|
|
def turn_on(self, **kwargs):
|
|
|
|
""" Turn the device on. """
|
2015-10-02 20:39:30 +00:00
|
|
|
if self._event:
|
|
|
|
self._event.device.send_on(rfxtrx.RFXOBJECT.transport)
|
2015-09-29 20:47:22 +00:00
|
|
|
|
2015-09-27 09:13:49 +00:00
|
|
|
self._state = True
|
|
|
|
self.update_ha_state()
|
|
|
|
|
|
|
|
def turn_off(self, **kwargs):
|
|
|
|
""" Turn the device off. """
|
2015-10-02 20:39:30 +00:00
|
|
|
if self._event:
|
|
|
|
self._event.device.send_off(rfxtrx.RFXOBJECT.transport)
|
2015-09-29 20:47:22 +00:00
|
|
|
|
2015-09-27 09:13:49 +00:00
|
|
|
self._state = False
|
2015-11-26 07:12:04 +00:00
|
|
|
self.update_ha_state()
|