From 2931571880898660905f73abeddb1595f523e03b Mon Sep 17 00:00:00 2001 From: Ashley Strahle Date: Tue, 23 Jun 2026 14:26:27 +0000 Subject: [PATCH] Fix WS2812 color order to GRB (matching BMC) --- src/pixel_stomp_mux.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixel_stomp_mux.cpp b/src/pixel_stomp_mux.cpp index 96061d0..883aa8c 100644 --- a/src/pixel_stomp_mux.cpp +++ b/src/pixel_stomp_mux.cpp @@ -18,7 +18,7 @@ void PixelStompMux::begin() { delay(100); - FastLED.addLeds(leds, NUM_LEDS); + FastLED.addLeds(leds, NUM_LEDS); FastLED.setMaxPowerInVoltsAndMilliamps(5, 500); FastLED.setBrightness(128); fill_solid(leds, NUM_LEDS, CRGB::Black);