Remove all LED pulsing - returning to stable baseline

Pulsing code was causing crashes (FastLED.show() RMT conflict with USB).
Removed:
- update() is now empty no-op (was calling mux_ptr->show() every 33ms)
- Removed set_bpm(), beat_interval_ms, bpm serial command
Kept:
- Per-pad LED colors with dim off state (working fine)
- All button/MIDI/expression pedal functionality
This commit is contained in:
ash
2026-07-02 07:53:30 +00:00
parent 483fd1d000
commit 76a584a5ef
3 changed files with 0 additions and 44 deletions
-2
View File
@@ -33,7 +33,6 @@ private:
static const uint8_t NUM_LEDS = 10;
LedState led_states[NUM_LEDS];
bool initialized;
uint32_t beat_interval_ms = 500;
public:
DefaultLedStub();
@@ -45,5 +44,4 @@ public:
void update() override;
void set_mux(PixelStompMux* mux);
void set_bpm(uint16_t bpm);
};