Add miditest and mapping commands for LED layout debugging

This commit is contained in:
2026-06-24 03:56:30 +00:00
parent e5e546ed39
commit 6c64c91e55
2 changed files with 121 additions and 11 deletions
+1 -1
View File
@@ -18,6 +18,7 @@ public:
void begin();
void update();
void process_midi_event(const MidiEvent& event); // public for test commands
private:
LedStub* led_driver;
@@ -28,6 +29,5 @@ private:
PadMapping pad_mapping[NUM_PADS];
bool last_switch_state[NUM_PADS];
void process_midi_event(const MidiEvent& event);
void process_switch_event(uint8_t switch_id, bool pressed);
};