mirror of
https://github.com/esphome/esphome.git
synced 2025-07-11 09:33:26 +01:00
New coroutine-based task execution
This commit is contained in:
esphomeyaml
__main__.pyautomation.py
pylintrccomponents
ads1115.py
config.pyconfig_validation.pyconst.pycore.pybinary_sensor
cover
dallas.pydeep_sleep.pyesp32_ble.pyesp32_touch.pyfan
i2c.pyir_transmitter.pylight
logger.pymqtt.pyota.pyoutput
pca9685.pypcf8574.pypower_supply.pysensor
__init__.pyadc.pyads1115.pybh1750.pybme280.pybme680.pybmp085.pydallas.pydht.pydht12.pyhdc1080.pyhtu21d.pymax6675.pympu6050.pypulse_counter.pyrotary_encoder.pysht3xd.pytemplate.pytsl2561.pyultrasonic.py
switch
web_server.pywifi.pydashboard
helpers.pypins.pyyaml_util.py@ -6,19 +6,22 @@ from esphomeyaml.components import binary_sensor
|
||||
from esphomeyaml.const import CONF_MAKE_ID, CONF_NAME, CONF_PIN
|
||||
from esphomeyaml.helpers import App, gpio_input_pin_expression, variable, Application
|
||||
|
||||
MakeGPIOBinarySensor = Application.MakeGPIOBinarySensor
|
||||
|
||||
PLATFORM_SCHEMA = binary_sensor.PLATFORM_SCHEMA.extend({
|
||||
cv.GenerateID('gpio_binary_sensor', CONF_MAKE_ID): cv.register_variable_id,
|
||||
cv.GenerateID(CONF_MAKE_ID): cv.declare_variable_id(MakeGPIOBinarySensor),
|
||||
vol.Required(CONF_PIN): pins.GPIO_INPUT_PIN_SCHEMA
|
||||
}).extend(binary_sensor.BINARY_SENSOR_SCHEMA.schema)
|
||||
|
||||
MakeGPIOBinarySensor = Application.MakeGPIOBinarySensor
|
||||
|
||||
|
||||
def to_code(config):
|
||||
rhs = App.make_gpio_binary_sensor(config[CONF_NAME],
|
||||
gpio_input_pin_expression(config[CONF_PIN]))
|
||||
gpio = variable(MakeGPIOBinarySensor, config[CONF_MAKE_ID], rhs)
|
||||
binary_sensor.setup_binary_sensor(gpio.Pgpio, gpio.Pmqtt, config)
|
||||
pin = None
|
||||
for pin in gpio_input_pin_expression(config[CONF_PIN]):
|
||||
yield
|
||||
rhs = App.make_gpio_binary_sensor(config[CONF_NAME], pin)
|
||||
gpio = variable(config[CONF_MAKE_ID], rhs)
|
||||
for _ in binary_sensor.setup_binary_sensor(gpio.Pgpio, gpio.Pmqtt, config):
|
||||
yield
|
||||
|
||||
|
||||
BUILD_FLAGS = '-DUSE_GPIO_BINARY_SENSOR'
|
||||
|
Reference in New Issue
Block a user