29 lines
738 B
Python
29 lines
738 B
Python
import esphome.codegen as cg
|
|
from esphome.components import output, switch
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_OUTPUT
|
|
|
|
from .. import output_ns
|
|
|
|
OutputSwitch = output_ns.class_("OutputSwitch", switch.Switch, cg.Component)
|
|
|
|
OutputSwitchRestoreMode = output_ns.enum("OutputSwitchRestoreMode")
|
|
|
|
|
|
CONFIG_SCHEMA = (
|
|
switch.switch_schema(OutputSwitch)
|
|
.extend(
|
|
{
|
|
cv.Required(CONF_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await switch.new_switch(config)
|
|
await cg.register_component(var, config)
|
|
|
|
output_ = await cg.get_variable(config[CONF_OUTPUT])
|
|
cg.add(var.set_output(output_))
|