mirror of
https://github.com/esphome/esphome.git
synced 2024-11-08 09:40:53 +01:00
30 lines
1.3 KiB
Python
30 lines
1.3 KiB
Python
|
import voluptuous as vol
|
||
|
|
||
|
import esphomeyaml.config_validation as cv
|
||
|
from esphomeyaml.components import light
|
||
|
from esphomeyaml.const import CONF_BLUE, CONF_DEFAULT_TRANSITION_LENGTH, CONF_GAMMA_CORRECT, \
|
||
|
CONF_GREEN, CONF_ID, CONF_NAME, CONF_RED, CONF_WHITE
|
||
|
from esphomeyaml.helpers import App, get_variable, variable, add
|
||
|
|
||
|
PLATFORM_SCHEMA = light.PLATFORM_SCHEMA.extend({
|
||
|
cv.GenerateID('rgbw_light'): cv.register_variable_id,
|
||
|
vol.Required(CONF_RED): cv.variable_id,
|
||
|
vol.Required(CONF_GREEN): cv.variable_id,
|
||
|
vol.Required(CONF_BLUE): cv.variable_id,
|
||
|
vol.Required(CONF_WHITE): cv.variable_id,
|
||
|
vol.Optional(CONF_GAMMA_CORRECT): cv.positive_float,
|
||
|
vol.Optional(CONF_DEFAULT_TRANSITION_LENGTH): cv.positive_time_period,
|
||
|
})
|
||
|
|
||
|
|
||
|
def to_code(config):
|
||
|
red = get_variable(config[CONF_RED])
|
||
|
green = get_variable(config[CONF_GREEN])
|
||
|
blue = get_variable(config[CONF_BLUE])
|
||
|
white = get_variable(config[CONF_WHITE])
|
||
|
rhs = App.make_rgbw_light(config[CONF_NAME], red, green, blue, white)
|
||
|
light_struct = variable('Application::LightStruct', config[CONF_ID], rhs)
|
||
|
if CONF_GAMMA_CORRECT in config:
|
||
|
add(light_struct.Poutput.set_gamma_correct(config[CONF_GAMMA_CORRECT]))
|
||
|
light.setup_mqtt_light_component(light_struct.Pmqtt, config)
|