mirror of
https://github.com/esphome/esphome.git
synced 2026-09-25 05:54:01 +00:00
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
from esphome import pins
|
|
import esphome.codegen as cg
|
|
from esphome.components import binary_sensor
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_PIN
|
|
|
|
from .. import gpio_ns
|
|
|
|
GPIOBinarySensor = gpio_ns.class_(
|
|
"GPIOBinarySensor", binary_sensor.BinarySensor, cg.Component
|
|
)
|
|
|
|
CONF_USE_INTERRUPT = "use_interrupt"
|
|
CONF_INTERRUPT_TYPE = "interrupt_type"
|
|
|
|
INTERRUPT_TYPES = {
|
|
"RISING": gpio_ns.INTERRUPT_RISING_EDGE,
|
|
"FALLING": gpio_ns.INTERRUPT_FALLING_EDGE,
|
|
"ANY": gpio_ns.INTERRUPT_ANY_EDGE,
|
|
}
|
|
|
|
CONFIG_SCHEMA = (
|
|
binary_sensor.binary_sensor_schema(GPIOBinarySensor)
|
|
.extend(
|
|
{
|
|
cv.Required(CONF_PIN): pins.gpio_input_pin_schema,
|
|
cv.Optional(CONF_USE_INTERRUPT, default=True): cv.boolean,
|
|
cv.Optional(CONF_INTERRUPT_TYPE, default="ANY"): cv.enum(
|
|
INTERRUPT_TYPES, upper=True
|
|
),
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await binary_sensor.new_binary_sensor(config)
|
|
await cg.register_component(var, config)
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_PIN])
|
|
cg.add(var.set_pin(pin))
|
|
|
|
cg.add(var.set_use_interrupt(config[CONF_USE_INTERRUPT]))
|
|
if config[CONF_USE_INTERRUPT]:
|
|
cg.add(var.set_interrupt_type(config[CONF_INTERRUPT_TYPE]))
|