Update examples/companion_radio/ui-new/UITask.cpp

Co-authored-by: Wessel <wessel@weebl.me>
This commit is contained in:
Michael Gjelsø 2026-03-05 14:36:59 +01:00 committed by GitHub
parent 4d80a4e721
commit 8f3012bdbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -740,7 +740,7 @@ void UITask::neopixelMsgHandler() {
if (neopixel_brightness > 0) {
neopixel_brightness = 0;
neopixel_brightness_increasing = true;
for (int i = 2; i <= 6; i++) {
for (int i = 2; i < NEOPIXEL_NUM; i++) {
pixels.setPixelColor(i, pixels.Color(0, 0, 0));
}
pixels.show();