mirror of
https://github.com/esphome/esphome.git
synced 2025-02-22 04:48:21 +00:00
* Cleanup dashboard JS * Add vscode * Save start_mark/end_mark * Updates * Updates * Remove need for cv.nameable It's a bit hacky but removes so much bloat from integrations * Add enum helper * Document APIs, and Improvements * Fixes * Fixes * Update PULL_REQUEST_TEMPLATE.md * Updates * Updates * Updates
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
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, CONF_WHITE
|
|
|
|
rgbw_ns = cg.esphome_ns.namespace('rgbw')
|
|
RGBWLightOutput = rgbw_ns.class_('RGBWLightOutput', light.LightOutput)
|
|
|
|
CONFIG_SCHEMA = light.RGB_LIGHT_SCHEMA.extend({
|
|
cv.GenerateID(CONF_OUTPUT_ID): cv.declare_id(RGBWLightOutput),
|
|
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),
|
|
cv.Required(CONF_WHITE): cv.use_id(output.FloatOutput),
|
|
})
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_OUTPUT_ID])
|
|
yield light.register_light(var, config)
|
|
|
|
red = yield cg.get_variable(config[CONF_RED])
|
|
cg.add(var.set_red(red))
|
|
green = yield cg.get_variable(config[CONF_GREEN])
|
|
cg.add(var.set_green(green))
|
|
blue = yield cg.get_variable(config[CONF_BLUE])
|
|
cg.add(var.set_blue(blue))
|
|
white = yield cg.get_variable(config[CONF_WHITE])
|
|
cg.add(var.set_white(white))
|