esphome/esphomeyaml/components/binary_sensor/gpio.py

25 lines
945 B
Python
Raw Normal View History

2018-04-07 01:23:03 +02:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml import pins
from esphomeyaml.components import binary_sensor
2018-05-20 12:41:52 +02:00
from esphomeyaml.const import CONF_MAKE_ID, CONF_NAME, CONF_PIN
from esphomeyaml.helpers import App, gpio_input_pin_expression, variable, Application
2018-04-07 01:23:03 +02:00
PLATFORM_SCHEMA = binary_sensor.PLATFORM_SCHEMA.extend({
2018-05-20 12:41:52 +02:00
cv.GenerateID('gpio_binary_sensor', CONF_MAKE_ID): cv.register_variable_id,
2018-04-07 01:23:03 +02:00
vol.Required(CONF_PIN): pins.GPIO_INPUT_PIN_SCHEMA
2018-05-20 12:41:52 +02:00
}).extend(binary_sensor.BINARY_SENSOR_SCHEMA.schema)
MakeGPIOBinarySensor = Application.MakeGPIOBinarySensor
2018-04-07 01:23:03 +02:00
def to_code(config):
2018-05-17 19:57:55 +02:00
rhs = App.make_gpio_binary_sensor(config[CONF_NAME],
gpio_input_pin_expression(config[CONF_PIN]))
2018-05-20 12:41:52 +02:00
gpio = variable(MakeGPIOBinarySensor, config[CONF_MAKE_ID], rhs)
binary_sensor.setup_binary_sensor(gpio.Pgpio, gpio.Pmqtt, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_GPIO_BINARY_SENSOR'