mirror of
https://github.com/esphome/esphome.git
synced 2025-03-16 07:38:17 +00:00
29 lines
991 B
Python
29 lines
991 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import light, output
|
|
from esphome.const import CONF_BLUE, CONF_GREEN, CONF_RED, CONF_OUTPUT_ID
|
|
|
|
rgb_ns = cg.esphome_ns.namespace("rgb")
|
|
RGBLightOutput = rgb_ns.class_("RGBLightOutput", light.LightOutput)
|
|
|
|
CONFIG_SCHEMA = light.RGB_LIGHT_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(CONF_OUTPUT_ID): cv.declare_id(RGBLightOutput),
|
|
cv.Required(CONF_RED): cv.use_id(output.FloatOutput),
|
|
cv.Required(CONF_GREEN): cv.use_id(output.FloatOutput),
|
|
cv.Required(CONF_BLUE): cv.use_id(output.FloatOutput),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_OUTPUT_ID])
|
|
await light.register_light(var, config)
|
|
|
|
red = await cg.get_variable(config[CONF_RED])
|
|
cg.add(var.set_red(red))
|
|
green = await cg.get_variable(config[CONF_GREEN])
|
|
cg.add(var.set_green(green))
|
|
blue = await cg.get_variable(config[CONF_BLUE])
|
|
cg.add(var.set_blue(blue))
|