esphome/esphomeyaml/components/binary_sensor/rdm6300.py

24 lines
713 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-08-22 22:04:56 +02:00
from esphomeyaml.components import binary_sensor, rdm6300
2018-08-13 19:11:33 +02:00
from esphomeyaml.const import CONF_NAME, CONF_UID
from esphomeyaml.helpers import get_variable
DEPENDENCIES = ['rdm6300']
CONF_RDM6300_ID = 'rdm6300_id'
PLATFORM_SCHEMA = cv.nameable(binary_sensor.BINARY_SENSOR_PLATFORM_SCHEMA.extend({
vol.Required(CONF_UID): cv.uint32_t,
2018-08-22 22:04:56 +02:00
cv.GenerateID(CONF_RDM6300_ID): cv.use_variable_id(rdm6300.RDM6300Component)
2018-08-13 19:11:33 +02:00
}))
def to_code(config):
hub = None
for hub in get_variable(config[CONF_RDM6300_ID]):
yield
2018-08-22 22:04:56 +02:00
rhs = hub.make_card(config[CONF_NAME], config[CONF_UID])
2018-08-13 19:11:33 +02:00
binary_sensor.register_binary_sensor(rhs, config)