From ad977d3b0992839cc9b4d7205d0a1646d6151f39 Mon Sep 17 00:00:00 2001 From: Ashley Strahle Date: Fri, 3 Jul 2026 07:46:26 +0000 Subject: [PATCH] =?UTF-8?q?Beat=201=20=3D=20yellow,=20other=20beats=20=3D?= =?UTF-8?q?=20white=20=E2=80=94=20visible=20color=20contrast?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 3866bd6..f9daaed 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -42,11 +42,11 @@ void midi_task(void* parameter) { if (current_beat != last_beat) { last_beat = current_beat; flash_start = now; - // Beat 1 every 4th beat = full white, others near-invisible + // Beat 1 (every 4th) = yellow, others = white if (current_beat % 4 == 0) { - mux.set_led_color(6, 255, 255, 255); + mux.set_led_color(6, 255, 255, 0); } else { - mux.set_led_color(6, 6, 6, 6); + mux.set_led_color(6, 255, 255, 255); } mux.show(); }