Migrate to voluptuous (#3737)

This commit is contained in:
Fabian Affolter 2016-10-11 09:56:57 +02:00 committed by Paulus Schoutsen
parent 0568ef025b
commit a99f36f519
2 changed files with 56 additions and 21 deletions

View file

@ -8,27 +8,46 @@ https://home-assistant.io/components/switch.arduino/
"""
import logging
import voluptuous as vol
import homeassistant.components.arduino as arduino
from homeassistant.components.switch import SwitchDevice
from homeassistant.const import DEVICE_DEFAULT_NAME
from homeassistant.components.switch import (SwitchDevice, PLATFORM_SCHEMA)
from homeassistant.const import CONF_NAME
import homeassistant.helpers.config_validation as cv
DEPENDENCIES = ['arduino']
_LOGGER = logging.getLogger(__name__)
CONF_PINS = 'pins'
CONF_TYPE = 'digital'
CONF_NEGATE = 'negate'
CONF_INITIAL = 'initial'
PIN_SCHEMA = vol.Schema({
vol.Required(CONF_NAME): cv.string,
vol.Optional(CONF_INITIAL, default=False): cv.boolean,
vol.Optional(CONF_NEGATE, default=False): cv.boolean,
})
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_PINS, default={}):
vol.Schema({cv.positive_int: PIN_SCHEMA}),
})
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Setup the Arduino platform."""
"""Set up the Arduino platform."""
# Verify that Arduino board is present
if arduino.BOARD is None:
_LOGGER.error('A connection has not been made to the Arduino board.')
_LOGGER.error("A connection has not been made to the Arduino board")
return False
pins = config.get(CONF_PINS)
switches = []
pins = config.get('pins')
for pinnum, pin in pins.items():
if pin.get('name'):
switches.append(ArduinoSwitch(pinnum, pin))
switches.append(ArduinoSwitch(pinnum, pin))
add_devices(switches)
@ -38,13 +57,13 @@ class ArduinoSwitch(SwitchDevice):
def __init__(self, pin, options):
"""Initialize the Pin."""
self._pin = pin
self._name = options.get('name') or DEVICE_DEFAULT_NAME
self.pin_type = options.get('type')
self._name = options.get(CONF_NAME)
self.pin_type = CONF_TYPE
self.direction = 'out'
self._state = options.get('initial', False)
self._state = options.get(CONF_INITIAL)
if options.get('negate', False):
if options.get(CONF_NEGATE):
self.turn_on_handler = arduino.BOARD.set_digital_out_low
self.turn_off_handler = arduino.BOARD.set_digital_out_high
else: