mirror of
https://github.com/esphome/esphome.git
synced 2025-07-13 02:23:12 +01:00
Initial Commit 🎉
This commit is contained in:
.dockerignore.gitignoreDockerfileREADME.md
docker
esphomeyaml
__init__.py__main__.py
components
__init__.pyads1115.py
config.pyconfig_validation.pyconst.pycore.pyespota.pyhelpers.pymqtt.pypins.pywizard.pywriter.pyyaml_util.pybinary_sensor
dallas.pyfan
i2c.pyir_transmitter.pylight
logger.pymqtt.pyota.pyoutput
pca9685.pypower_supply.pysensor
switch
wifi.pyexamples
README.mdcabinet.yamldachboden.yamlheatpump.yamlkuche.yamllebensmittelkeller.yamllivingroom.yamlterrasse.yaml
requirements.txtsetup.py
21
esphomeyaml/components/binary_sensor/gpio.py
Normal file
21
esphomeyaml/components/binary_sensor/gpio.py
Normal file
@ -0,0 +1,21 @@
|
||||
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_DEVICE_CLASS, CONF_ID, CONF_INVERTED, CONF_NAME, CONF_PIN
|
||||
from esphomeyaml.helpers import App, add, exp_gpio_input_pin, variable
|
||||
|
||||
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):
|
||||
rhs = App.make_gpio_binary_sensor(exp_gpio_input_pin(config[CONF_PIN]),
|
||||
config[CONF_NAME], config.get(CONF_DEVICE_CLASS))
|
||||
gpio = variable('Application::SimpleBinarySensor', config[CONF_ID], rhs)
|
||||
if CONF_INVERTED in config:
|
||||
add(gpio.Pgpio.set_inverted(config[CONF_INVERTED]))
|
||||
binary_sensor.setup_mqtt_binary_sensor(gpio.Pmqtt, config, skip_device_class=True)
|
Reference in New Issue
Block a user