Fix NUM_LEDS=10, NUM_BUTTONS=16 for 2 daisy-chained MUX boards. Fix pixel7 stuck blue (was only sending 8 LED data to 10-LED chain)

This commit is contained in:
2026-06-23 22:43:53 +00:00
parent be36ba9bf4
commit 9a56591453
5 changed files with 26 additions and 28 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ class PixelStompMux;
class DefaultLedStub : public LedStub {
private:
static const uint8_t NUM_LEDS = 8;
static const uint8_t NUM_LEDS = 10;
LedState led_states[NUM_LEDS];
bool initialized;