mirror of
https://github.com/esphome/esphome.git
synced 2025-07-23 07:19:40 +01:00
Automation API & Cleanup
This commit is contained in:
esphomeyaml
__main__.pyautomation.py
pylintrccomponents
ads1115.py
config.pyconfig_validation.pyconst.pycore.pyhelpers.pypins.pyyaml_util.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.py@@ -3,23 +3,22 @@ import voluptuous as vol
|
||||
import esphomeyaml.config_validation as cv
|
||||
from esphomeyaml import pins
|
||||
from esphomeyaml.components import binary_sensor
|
||||
from esphomeyaml.const import CONF_ID, CONF_INVERTED, CONF_NAME, CONF_PIN
|
||||
from esphomeyaml.helpers import App, add, variable, gpio_input_pin_expression
|
||||
from esphomeyaml.const import CONF_MAKE_ID, CONF_NAME, CONF_PIN
|
||||
from esphomeyaml.helpers import App, gpio_input_pin_expression, variable, Application
|
||||
|
||||
PLATFORM_SCHEMA = binary_sensor.PLATFORM_SCHEMA.extend({
|
||||
cv.GenerateID('gpio_binary_sensor'): cv.register_variable_id,
|
||||
cv.GenerateID('gpio_binary_sensor', CONF_MAKE_ID): cv.register_variable_id,
|
||||
vol.Required(CONF_PIN): pins.GPIO_INPUT_PIN_SCHEMA
|
||||
}).extend(binary_sensor.MQTT_BINARY_SENSOR_SCHEMA.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('Application::MakeGPIOBinarySensor', config[CONF_ID], rhs)
|
||||
if CONF_INVERTED in config:
|
||||
add(gpio.Pgpio.set_inverted(config[CONF_INVERTED]))
|
||||
binary_sensor.setup_binary_sensor(gpio.Pgpio, config)
|
||||
binary_sensor.setup_mqtt_binary_sensor(gpio.Pmqtt, config)
|
||||
gpio = variable(MakeGPIOBinarySensor, config[CONF_MAKE_ID], rhs)
|
||||
binary_sensor.setup_binary_sensor(gpio.Pgpio, gpio.Pmqtt, config)
|
||||
|
||||
|
||||
BUILD_FLAGS = '-DUSE_GPIO_BINARY_SENSOR'
|
||||
|
Reference in New Issue
Block a user