1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-19 00:58:13 +00:00

29 lines
971 B
Python
Raw Normal View History

2018-08-13 19:11:33 +02:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
2018-11-10 23:35:37 +01:00
from esphomeyaml.components import binary_sensor, uart
2018-08-13 19:11:33 +02:00
from esphomeyaml.const import CONF_ID, CONF_UART_ID
2018-11-10 23:35:37 +01:00
from esphomeyaml.helpers import App, Pvariable, get_variable, setup_component, Component
2018-08-13 19:11:33 +02:00
DEPENDENCIES = ['uart']
2018-11-10 23:35:37 +01:00
RDM6300Component = binary_sensor.binary_sensor_ns.class_('RDM6300Component', Component,
uart.UARTDevice)
2018-08-13 19:11:33 +02:00
2018-08-22 22:04:56 +02:00
CONFIG_SCHEMA = vol.All(cv.ensure_list_not_empty, [vol.Schema({
2018-08-13 19:11:33 +02:00
cv.GenerateID(): cv.declare_variable_id(RDM6300Component),
2018-11-10 23:35:37 +01:00
cv.GenerateID(CONF_UART_ID): cv.use_variable_id(uart.UARTComponent),
2018-11-10 20:15:08 +01:00
}).extend(cv.COMPONENT_SCHEMA.schema)])
2018-08-13 19:11:33 +02:00
def to_code(config):
for conf in config:
for uart in get_variable(conf[CONF_UART_ID]):
yield
rhs = App.make_rdm6300_component(uart)
2018-11-10 20:15:08 +01:00
var = Pvariable(conf[CONF_ID], rhs)
setup_component(var, conf)
2018-08-13 19:11:33 +02:00
BUILD_FLAGS = '-DUSE_RDM6300'