* Implement X10 * Add X10 after add_device_callback * Ref device by id not hex and add x10OnOffSwitch name * X10 services and add sensor device * Correctly reference X10_HOUSECODE_SCHEMA * Log adding of X10 devices * Add X10 All Units Off, All Lights On and All Lights Off devices * Correct ref to X10 states vs devices * Add X10 All Units Off, All Lights On and All Lights Off devices * Correct X10 config * Debug x10 device additions * Config x10 from bool to housecode char * Pass PLM to X10 device create * Remove PLM to call to add_x10_device * Unconfuse x10 config and method names * Correct spelling of x10_all_lights_off_housecode * Bump insteonplm to 0.10.0 to support X10 * Add host to config options * Add username and password to config for hub connectivity * Add username and password to config for hub * Convert port to int if host is defined * Add KeypadLinc * Update config schema to require either port or host * Solidify Hub and PLM configuration to ensure proper settings * Update hub schema * Bump insteonplm version * Fix pylint and flake issues * Bump insteonplm to 0.12.1 * Merge insteon_plm and insteon_local to insteon * Rename insteon_plm to insteon * Bump insteonplm to 0.12.2 * Flake8 cleanup * Update .coveragerc for insteon_plm, insteon_local and insteon changes * Add persistent notification * Fix reference to insteon_plm * Fix indentation * Shorten message and fix grammer * Add comment to remove in release 0.90 * Hound fix
64 lines
2 KiB
Python
64 lines
2 KiB
Python
"""
|
|
Support for INSTEON dimmers via PowerLinc Modem.
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/binary_sensor.insteon/
|
|
"""
|
|
import asyncio
|
|
import logging
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
from homeassistant.components.insteon import InsteonEntity
|
|
|
|
DEPENDENCIES = ['insteon']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
SENSOR_TYPES = {'openClosedSensor': 'opening',
|
|
'motionSensor': 'motion',
|
|
'doorSensor': 'door',
|
|
'wetLeakSensor': 'moisture',
|
|
'lightSensor': 'light',
|
|
'batterySensor': 'battery'}
|
|
|
|
|
|
@asyncio.coroutine
|
|
def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
|
|
"""Set up the INSTEON device class for the hass platform."""
|
|
insteon_modem = hass.data['insteon'].get('modem')
|
|
|
|
address = discovery_info['address']
|
|
device = insteon_modem.devices[address]
|
|
state_key = discovery_info['state_key']
|
|
name = device.states[state_key].name
|
|
if name != 'dryLeakSensor':
|
|
_LOGGER.debug('Adding device %s entity %s to Binary Sensor platform',
|
|
device.address.hex, device.states[state_key].name)
|
|
|
|
new_entity = InsteonBinarySensor(device, state_key)
|
|
|
|
async_add_devices([new_entity])
|
|
|
|
|
|
class InsteonBinarySensor(InsteonEntity, BinarySensorDevice):
|
|
"""A Class for an Insteon device entity."""
|
|
|
|
def __init__(self, device, state_key):
|
|
"""Initialize the INSTEON binary sensor."""
|
|
super().__init__(device, state_key)
|
|
self._sensor_type = SENSOR_TYPES.get(self._insteon_device_state.name)
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this sensor."""
|
|
return self._sensor_type
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return the boolean response if the node is on."""
|
|
on_val = bool(self._insteon_device_state.value)
|
|
|
|
if self._insteon_device_state.name == 'lightSensor':
|
|
return not on_val
|
|
|
|
return on_val
|