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-04-18 18:43:13 +02:00
|
|
|
from esphomeyaml.const import CONF_ID, CONF_INVERTED, CONF_NAME, CONF_PIN
|
2018-05-17 19:57:55 +02:00
|
|
|
from esphomeyaml.helpers import App, add, variable, gpio_input_pin_expression
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
PLATFORM_SCHEMA = binary_sensor.PLATFORM_SCHEMA.extend({
|
|
|
|
cv.GenerateID('gpio_binary_sensor'): cv.register_variable_id,
|
|
|
|
vol.Required(CONF_PIN): pins.GPIO_INPUT_PIN_SCHEMA
|
|
|
|
}).extend(binary_sensor.MQTT_BINARY_SENSOR_SCHEMA.schema)
|
|
|
|
|
|
|
|
|
|
|
|
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-04-18 18:43:13 +02:00
|
|
|
gpio = variable('Application::MakeGPIOBinarySensor', config[CONF_ID], rhs)
|
2018-04-07 01:23:03 +02:00
|
|
|
if CONF_INVERTED in config:
|
|
|
|
add(gpio.Pgpio.set_inverted(config[CONF_INVERTED]))
|
2018-04-18 18:43:13 +02:00
|
|
|
binary_sensor.setup_binary_sensor(gpio.Pgpio, config)
|
|
|
|
binary_sensor.setup_mqtt_binary_sensor(gpio.Pmqtt, config)
|
|
|
|
|
|
|
|
|
2018-05-06 15:56:12 +02:00
|
|
|
BUILD_FLAGS = '-DUSE_GPIO_BINARY_SENSOR'
|