* Upgrade pylint to 1.8.1 * Fix no-else-return * Fix bad-whitespace * Fix too-many-nested-blocks * Fix raising-format-tuple See https://github.com/PyCQA/pylint/blob/master/doc/whatsnew/1.8.rst * Fix len-as-condition * Fix logging-not-lazy Not sure about that TEMP_CELSIUS though, but internally it's probably just like if you concatenated any other (variable) string * Fix stop-iteration-return * Fix useless-super-delegation * Fix trailing-comma-tuple Both of these seem to simply be bugs: * Nest: The value of self._humidity never seems to be used anywhere * Dovado: The called API method seems to expect a "normal" number * Fix redefined-argument-from-local * Fix consider-using-enumerate * Fix wrong-import-order * Fix arguments-differ * Fix missed no-else-return * Fix no-member and related * Fix signatures-differ * Revert "Upgrade pylint to 1.8.1" This reverts commit af78aa00f125a7d34add97b9d50c14db48412211. * Fix arguments-differ * except for device_tracker * Cleanup * Fix test using positional argument * Fix line too long I forgot to run flake8 - shame on me... 🙃 * Fix bad-option-value for 1.6.5 * Fix arguments-differ for device_tracker * Upgrade pylint to 1.8.2 * 👕 Fix missed no-member
88 lines
2.5 KiB
Python
88 lines
2.5 KiB
Python
"""
|
|
Allows to configure a switch using the PiFace Digital I/O module on a RPi.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/switch.rpi_pfio/
|
|
"""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.components.rpi_pfio as rpi_pfio
|
|
from homeassistant.components.switch import PLATFORM_SCHEMA
|
|
from homeassistant.const import DEVICE_DEFAULT_NAME
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.entity import ToggleEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEPENDENCIES = ['rpi_pfio']
|
|
|
|
ATTR_INVERT_LOGIC = 'invert_logic'
|
|
ATTR_NAME = 'name'
|
|
|
|
CONF_PORTS = 'ports'
|
|
|
|
DEFAULT_INVERT_LOGIC = False
|
|
|
|
PORT_SCHEMA = vol.Schema({
|
|
vol.Optional(ATTR_NAME, default=None): cv.string,
|
|
vol.Optional(ATTR_INVERT_LOGIC, default=DEFAULT_INVERT_LOGIC): cv.boolean,
|
|
})
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Optional(CONF_PORTS, default={}): vol.Schema({
|
|
cv.positive_int: PORT_SCHEMA,
|
|
})
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Set up the PiFace Digital Output devices."""
|
|
switches = []
|
|
ports = config.get(CONF_PORTS)
|
|
for port, port_entity in ports.items():
|
|
name = port_entity[ATTR_NAME]
|
|
invert_logic = port_entity[ATTR_INVERT_LOGIC]
|
|
|
|
switches.append(RPiPFIOSwitch(port, name, invert_logic))
|
|
add_devices(switches)
|
|
|
|
|
|
class RPiPFIOSwitch(ToggleEntity):
|
|
"""Representation of a PiFace Digital Output."""
|
|
|
|
def __init__(self, port, name, invert_logic):
|
|
"""Initialize the pin."""
|
|
self._port = port
|
|
self._name = name or DEVICE_DEFAULT_NAME
|
|
self._invert_logic = invert_logic
|
|
self._state = False
|
|
rpi_pfio.write_output(self._port, 1 if self._invert_logic else 0)
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the switch."""
|
|
return self._name
|
|
|
|
@property
|
|
def should_poll(self):
|
|
"""Return the polling state."""
|
|
return False
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if device is on."""
|
|
return self._state
|
|
|
|
def turn_on(self, **kwargs):
|
|
"""Turn the device on."""
|
|
rpi_pfio.write_output(self._port, 0 if self._invert_logic else 1)
|
|
self._state = True
|
|
self.schedule_update_ha_state()
|
|
|
|
def turn_off(self, **kwargs):
|
|
"""Turn the device off."""
|
|
rpi_pfio.write_output(self._port, 1 if self._invert_logic else 0)
|
|
self._state = False
|
|
self.schedule_update_ha_state()
|