mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
8e75980ebd
* 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
55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome import pins
|
|
from esphome.components import fastled_base
|
|
from esphome.const import CONF_CHIPSET, CONF_NUM_LEDS, CONF_PIN, CONF_RGB_ORDER
|
|
|
|
CHIPSETS = [
|
|
'NEOPIXEL',
|
|
'TM1829',
|
|
'TM1809',
|
|
'TM1804',
|
|
'TM1803',
|
|
'UCS1903',
|
|
'UCS1903B',
|
|
'UCS1904',
|
|
'UCS2903',
|
|
'WS2812',
|
|
'WS2852',
|
|
'WS2812B',
|
|
'SK6812',
|
|
'SK6822',
|
|
'APA106',
|
|
'PL9823',
|
|
'WS2811',
|
|
'WS2813',
|
|
'APA104',
|
|
'WS2811_400',
|
|
'GW6205',
|
|
'GW6205_400',
|
|
'LPD1886',
|
|
'LPD1886_8BIT',
|
|
]
|
|
|
|
|
|
def validate(value):
|
|
if value[CONF_CHIPSET] == 'NEOPIXEL' and CONF_RGB_ORDER in value:
|
|
raise cv.Invalid("NEOPIXEL doesn't support RGB order")
|
|
return value
|
|
|
|
|
|
CONFIG_SCHEMA = cv.All(fastled_base.BASE_SCHEMA.extend({
|
|
cv.Required(CONF_CHIPSET): cv.one_of(*CHIPSETS, upper=True),
|
|
cv.Required(CONF_PIN): pins.output_pin,
|
|
}), validate)
|
|
|
|
|
|
def to_code(config):
|
|
var = yield fastled_base.new_fastled_light(config)
|
|
|
|
rgb_order = None
|
|
if CONF_RGB_ORDER in config:
|
|
rgb_order = cg.RawExpression(config[CONF_RGB_ORDER])
|
|
template_args = cg.TemplateArguments(cg.RawExpression(config[CONF_CHIPSET]),
|
|
config[CONF_PIN], rgb_order)
|
|
cg.add(var.add_leds(template_args, config[CONF_NUM_LEDS]))
|