mirror of
https://github.com/esphome/esphome.git
synced 2025-02-19 03:18:14 +00:00
23 lines
684 B
Python
23 lines
684 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import light, output
|
|
from esphome.const import CONF_OUTPUT_ID, CONF_OUTPUT
|
|
from .. import binary_ns
|
|
|
|
BinaryLightOutput = binary_ns.class_("BinaryLightOutput", light.LightOutput)
|
|
|
|
CONFIG_SCHEMA = light.BINARY_LIGHT_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(CONF_OUTPUT_ID): cv.declare_id(BinaryLightOutput),
|
|
cv.Required(CONF_OUTPUT): cv.use_id(output.BinaryOutput),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_OUTPUT_ID])
|
|
await light.register_light(var, config)
|
|
|
|
out = await cg.get_variable(config[CONF_OUTPUT])
|
|
cg.add(var.set_output(out))
|