We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16086c0 commit 6daf7f6Copy full SHA for 6daf7f6
wled00/wled.cpp
@@ -209,6 +209,12 @@ void WLED::loop()
209
210
toki.resetTick();
211
212
+// Advance to next playlist preset if the flag is set to true
213
+ if (doAdvancePlaylist) {
214
+ handlePlaylist(true);
215
+ doAdvancePlaylist = false; // Reset flag to false
216
+ }
217
+
218
#if WLED_WATCHDOG_TIMEOUT > 0
219
// we finished our mainloop, reset the watchdog timer
220
static unsigned long lastWDTFeed = 0;
0 commit comments