From 063fa2065dd9dcdfc7f4f5c4617942e677843c56 Mon Sep 17 00:00:00 2001 From: Ashley Strahle Date: Tue, 30 Jun 2026 04:49:30 +0000 Subject: [PATCH] Send visible palette index 21 (yellow) instead of 127 (black) so feedback is visible --- src/app_task.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app_task.cpp b/src/app_task.cpp index d2c509c..0dc4183 100644 --- a/src/app_task.cpp +++ b/src/app_task.cpp @@ -130,7 +130,8 @@ void AppTask::process_switch_event(uint8_t switch_id, bool pressed) { if (pad_mapping[i].physical_switch == switch_id) { uint8_t channel = pad_mapping[i].midi_channel; uint8_t cc_num = cc_map[i]; - uint8_t value = pressed ? 127 : 0; + // Use palette index 21 (yellow) so feedback is visible + uint8_t value = pressed ? 21 : 0; if (pressed) { midi_transport->send_cc(channel, cc_num, value);