mirror of
https://github.com/esphome/esphome.git
synced 2025-09-27 23:52:28 +01:00
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome import pins
|
|
from esphome.components import switch
|
|
from esphome.const import CONF_INTERLOCK, CONF_PIN
|
|
from .. import gpio_ns
|
|
|
|
GPIOSwitch = gpio_ns.class_("GPIOSwitch", switch.Switch, cg.Component)
|
|
|
|
CONF_INTERLOCK_WAIT_TIME = "interlock_wait_time"
|
|
CONFIG_SCHEMA = (
|
|
switch.switch_schema(GPIOSwitch)
|
|
.extend(
|
|
{
|
|
cv.Required(CONF_PIN): pins.gpio_output_pin_schema,
|
|
cv.Optional(CONF_INTERLOCK): cv.ensure_list(cv.use_id(switch.Switch)),
|
|
cv.Optional(
|
|
CONF_INTERLOCK_WAIT_TIME, default="0ms"
|
|
): cv.positive_time_period_milliseconds,
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await switch.new_switch(config)
|
|
await cg.register_component(var, config)
|
|
|
|
pin = await cg.gpio_pin_expression(config[CONF_PIN])
|
|
cg.add(var.set_pin(pin))
|
|
|
|
if CONF_INTERLOCK in config:
|
|
interlock = []
|
|
for it in config[CONF_INTERLOCK]:
|
|
lock = await cg.get_variable(it)
|
|
interlock.append(lock)
|
|
cg.add(var.set_interlock(interlock))
|
|
cg.add(var.set_interlock_wait_time(config[CONF_INTERLOCK_WAIT_TIME]))
|