2018-08-13 19:11:33 +02:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
from esphomeyaml import automation, pins
|
2018-11-12 23:30:31 +01:00
|
|
|
from esphomeyaml.components import binary_sensor, spi
|
2018-08-13 19:11:33 +02:00
|
|
|
from esphomeyaml.components.spi import SPIComponent
|
2018-12-05 21:22:06 +01:00
|
|
|
import esphomeyaml.config_validation as cv
|
|
|
|
from esphomeyaml.const import CONF_CS_PIN, CONF_ID, CONF_ON_TAG, CONF_SPI_ID, CONF_TRIGGER_ID, \
|
|
|
|
CONF_UPDATE_INTERVAL
|
|
|
|
from esphomeyaml.cpp_generator import Pvariable, get_variable
|
|
|
|
from esphomeyaml.cpp_helpers import gpio_output_pin_expression, setup_component
|
|
|
|
from esphomeyaml.cpp_types import App, PollingComponent, Trigger, std_string
|
2018-08-13 19:11:33 +02:00
|
|
|
|
|
|
|
DEPENDENCIES = ['spi']
|
2018-12-05 21:22:06 +01:00
|
|
|
MULTI_CONF = True
|
2018-08-13 19:11:33 +02:00
|
|
|
|
2018-11-12 23:30:31 +01:00
|
|
|
PN532Component = binary_sensor.binary_sensor_ns.class_('PN532Component', PollingComponent,
|
|
|
|
spi.SPIDevice)
|
|
|
|
PN532Trigger = binary_sensor.binary_sensor_ns.class_('PN532Trigger', Trigger.template(std_string))
|
2018-08-13 19:11:33 +02:00
|
|
|
|
2018-12-05 21:22:06 +01:00
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
2018-08-13 19:11:33 +02:00
|
|
|
cv.GenerateID(): cv.declare_variable_id(PN532Component),
|
|
|
|
cv.GenerateID(CONF_SPI_ID): cv.use_variable_id(SPIComponent),
|
2018-08-18 21:40:59 +02:00
|
|
|
vol.Required(CONF_CS_PIN): pins.gpio_output_pin_schema,
|
2018-08-24 22:44:15 +02:00
|
|
|
vol.Optional(CONF_UPDATE_INTERVAL): cv.update_interval,
|
2018-10-20 13:15:09 +02:00
|
|
|
vol.Optional(CONF_ON_TAG): automation.validate_automation({
|
2018-10-17 21:29:44 +02:00
|
|
|
cv.GenerateID(CONF_TRIGGER_ID): cv.declare_variable_id(PN532Trigger),
|
2018-10-20 13:15:09 +02:00
|
|
|
}),
|
2018-12-05 21:22:06 +01:00
|
|
|
}).extend(cv.COMPONENT_SCHEMA.schema)
|
2018-08-13 19:11:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def to_code(config):
|
2018-12-05 21:22:06 +01:00
|
|
|
for spi_ in get_variable(config[CONF_SPI_ID]):
|
|
|
|
yield
|
|
|
|
for cs in gpio_output_pin_expression(config[CONF_CS_PIN]):
|
|
|
|
yield
|
|
|
|
rhs = App.make_pn532_component(spi_, cs, config.get(CONF_UPDATE_INTERVAL))
|
|
|
|
pn532 = Pvariable(config[CONF_ID], rhs)
|
|
|
|
|
|
|
|
for conf_ in config.get(CONF_ON_TAG, []):
|
|
|
|
trigger = Pvariable(conf_[CONF_TRIGGER_ID], pn532.make_trigger())
|
|
|
|
automation.build_automation(trigger, std_string, conf_)
|
|
|
|
|
|
|
|
setup_component(pn532, config)
|
2018-11-12 23:30:31 +01:00
|
|
|
|
2018-08-13 19:11:33 +02:00
|
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_PN532'
|