esphome/esphomeyaml/components/rdm6300.py

30 lines
972 B
Python
Raw Normal View History

2018-08-13 19:11:33 +02:00
import voluptuous as vol
from esphomeyaml.components import binary_sensor, uart
2019-01-06 19:38:23 +01:00
import esphomeyaml.config_validation as cv
2018-08-13 19:11:33 +02:00
from esphomeyaml.const import CONF_ID, CONF_UART_ID
2019-01-06 19:38:23 +01:00
from esphomeyaml.cpp_generator import Pvariable, get_variable
from esphomeyaml.cpp_helpers import setup_component
from esphomeyaml.cpp_types import App, Component
2018-08-13 19:11:33 +02:00
DEPENDENCIES = ['uart']
RDM6300Component = binary_sensor.binary_sensor_ns.class_('RDM6300Component', Component,
uart.UARTDevice)
2018-08-13 19:11:33 +02:00
2019-01-06 19:38:23 +01:00
CONFIG_SCHEMA = vol.Schema({
2018-08-13 19:11:33 +02:00
cv.GenerateID(): cv.declare_variable_id(RDM6300Component),
cv.GenerateID(CONF_UART_ID): cv.use_variable_id(uart.UARTComponent),
2019-01-06 19:38:23 +01:00
}).extend(cv.COMPONENT_SCHEMA.schema)
2018-08-13 19:11:33 +02:00
def to_code(config):
2019-01-06 19:38:23 +01:00
for uart_ in get_variable(config[CONF_UART_ID]):
yield
rhs = App.make_rdm6300_component(uart_)
var = Pvariable(config[CONF_ID], rhs)
setup_component(var, config)
2018-08-13 19:11:33 +02:00
BUILD_FLAGS = '-DUSE_RDM6300'