113 lines
3.7 KiB
Python
113 lines
3.7 KiB
Python
|
"""
|
||
|
Support for wired switches attached to a Konnected device.
|
||
|
|
||
|
For more details about this platform, please refer to the documentation at
|
||
|
https://home-assistant.io/components/switch.konnected/
|
||
|
"""
|
||
|
|
||
|
import logging
|
||
|
|
||
|
from homeassistant.components.konnected import (
|
||
|
DOMAIN as KONNECTED_DOMAIN, PIN_TO_ZONE, CONF_ACTIVATION, CONF_MOMENTARY,
|
||
|
CONF_PAUSE, CONF_REPEAT, STATE_LOW, STATE_HIGH)
|
||
|
from homeassistant.helpers.entity import ToggleEntity
|
||
|
from homeassistant.const import (
|
||
|
CONF_DEVICES, CONF_SWITCHES, CONF_PIN, ATTR_STATE)
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
DEPENDENCIES = ['konnected']
|
||
|
|
||
|
|
||
|
async def async_setup_platform(hass, config, async_add_entities,
|
||
|
discovery_info=None):
|
||
|
"""Set switches attached to a Konnected device."""
|
||
|
if discovery_info is None:
|
||
|
return
|
||
|
|
||
|
data = hass.data[KONNECTED_DOMAIN]
|
||
|
device_id = discovery_info['device_id']
|
||
|
switches = [
|
||
|
KonnectedSwitch(device_id, pin_data.get(CONF_PIN), pin_data)
|
||
|
for pin_data in data[CONF_DEVICES][device_id][CONF_SWITCHES]]
|
||
|
async_add_entities(switches)
|
||
|
|
||
|
|
||
|
class KonnectedSwitch(ToggleEntity):
|
||
|
"""Representation of a Konnected switch."""
|
||
|
|
||
|
def __init__(self, device_id, pin_num, data):
|
||
|
"""Initialize the switch."""
|
||
|
self._data = data
|
||
|
self._device_id = device_id
|
||
|
self._pin_num = pin_num
|
||
|
self._activation = self._data.get(CONF_ACTIVATION, STATE_HIGH)
|
||
|
self._momentary = self._data.get(CONF_MOMENTARY)
|
||
|
self._pause = self._data.get(CONF_PAUSE)
|
||
|
self._repeat = self._data.get(CONF_REPEAT)
|
||
|
self._state = self._boolean_state(self._data.get(ATTR_STATE))
|
||
|
self._name = self._data.get(
|
||
|
'name', 'Konnected {} Actuator {}'.format(
|
||
|
device_id, PIN_TO_ZONE[pin_num]))
|
||
|
_LOGGER.debug('Created new switch: %s', self._name)
|
||
|
|
||
|
@property
|
||
|
def name(self):
|
||
|
"""Return the name of the switch."""
|
||
|
return self._name
|
||
|
|
||
|
@property
|
||
|
def is_on(self):
|
||
|
"""Return the status of the sensor."""
|
||
|
return self._state
|
||
|
|
||
|
@property
|
||
|
def client(self):
|
||
|
"""Return the Konnected HTTP client."""
|
||
|
return \
|
||
|
self.hass.data[KONNECTED_DOMAIN][CONF_DEVICES][self._device_id].\
|
||
|
get('client')
|
||
|
|
||
|
def turn_on(self, **kwargs):
|
||
|
"""Send a command to turn on the switch."""
|
||
|
resp = self.client.put_device(
|
||
|
self._pin_num,
|
||
|
int(self._activation == STATE_HIGH),
|
||
|
self._momentary,
|
||
|
self._repeat,
|
||
|
self._pause
|
||
|
)
|
||
|
|
||
|
if resp.get(ATTR_STATE) is not None:
|
||
|
self._set_state(True)
|
||
|
|
||
|
if self._momentary and resp.get(ATTR_STATE) != -1:
|
||
|
# Immediately set the state back off for momentary switches
|
||
|
self._set_state(False)
|
||
|
|
||
|
def turn_off(self, **kwargs):
|
||
|
"""Send a command to turn off the switch."""
|
||
|
resp = self.client.put_device(
|
||
|
self._pin_num, int(self._activation == STATE_LOW))
|
||
|
|
||
|
if resp.get(ATTR_STATE) is not None:
|
||
|
self._set_state(self._boolean_state(resp.get(ATTR_STATE)))
|
||
|
|
||
|
def _boolean_state(self, int_state):
|
||
|
if int_state is None:
|
||
|
return False
|
||
|
if int_state == 0:
|
||
|
return self._activation == STATE_LOW
|
||
|
if int_state == 1:
|
||
|
return self._activation == STATE_HIGH
|
||
|
|
||
|
def _set_state(self, state):
|
||
|
self._state = state
|
||
|
self.schedule_update_ha_state()
|
||
|
_LOGGER.debug('Setting status of %s actuator pin %s to %s',
|
||
|
self._device_id, self.name, state)
|
||
|
|
||
|
async def async_added_to_hass(self):
|
||
|
"""Store entity_id."""
|
||
|
self._data['entity_id'] = self.entity_id
|