From f24d35e970ec04359d51d0d37ce9c0d12da381db Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 20 Dec 2024 20:50:17 +0100 Subject: [PATCH] slowMode fix continue searching for busses in slowMode --- wled00/bus_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index 880ba24fe0..fc46e33991 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -1319,7 +1319,7 @@ void IRAM_ATTR __attribute__((hot)) BusManager::setPixelColor(uint16_t pix, uint lastend = bstart + b->getLength(); } b->setPixelColor(pix - bstart, c); - break; // WLEDMM found the right Bus -> so we can stop searching + if (!slowMode) break; // WLEDMM found the right Bus -> so we can stop searching - unless we have busses that overlap } } }