Skip to content

Commit

Permalink
slowMode fix
Browse files Browse the repository at this point in the history
continue searching for busses in slowMode
  • Loading branch information
softhack007 committed Dec 20, 2024
1 parent 2cff35e commit f24d35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/bus_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down

0 comments on commit f24d35e

Please sign in to comment.