From 45366a02a6b008ebfc032222414692e4b27edd43 Mon Sep 17 00:00:00 2001 From: Ashley Strahle Date: Thu, 2 Jul 2026 09:12:34 +0000 Subject: [PATCH] Restore full color cycle in animation, keep faster delays --- src/led_stub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/led_stub.cpp b/src/led_stub.cpp index 17ab2f0..d48c58e 100644 --- a/src/led_stub.cpp +++ b/src/led_stub.cpp @@ -198,7 +198,7 @@ void DefaultLedStub::begin() { // Launchpad X style: sweep each LED through palette, then all-off for (int i = 0; i < NUM_LEDS; i++) { - for (int c = 1; c <= 127; c += 16) { + for (int c = 1; c <= 127; c += 4) { uint32_t color = launchpad_palette[c]; uint8_t r = (color >> 16) & 0xFF; uint8_t g = (color >> 8) & 0xFF;