Add support for 2 Neopixel strips (#14667)

This commit is contained in:
Tim Moore
2019-07-20 21:14:09 -07:00
committed by Scott Lahteine
parent 6899ed2026
commit e5aa453293
123 changed files with 601 additions and 282 deletions

View File

@@ -46,7 +46,7 @@ PrinterEventLEDs printerEventLEDs;
inline void pel_set_rgb(const uint8_t r, const uint8_t g, const uint8_t b) {
leds.set_color(
MakeLEDColor(r, g, b, 0, pixels.getBrightness())
MakeLEDColor(r, g, b, 0, neo.brightness())
#if ENABLED(NEOPIXEL_IS_SEQUENTIAL)
, true
#endif