mirror of
https://github.com/Fishwaldo/WLED.git
synced 2025-07-11 23:48:25 +00:00
Add Playlist feature
This commit is contained in:
parent
e28dbb3b93
commit
3425f2bf34
6 changed files with 119 additions and 1 deletions
|
@ -255,6 +255,11 @@ bool deserializeState(JsonObject root)
|
|||
}
|
||||
}
|
||||
|
||||
JsonObject playlist = root[F("playlist")];
|
||||
if (!playlist.isNull()) {
|
||||
loadPlaylist(playlist); return stateResponse;
|
||||
}
|
||||
|
||||
colorUpdated(noNotification ? NOTIFIER_CALL_MODE_NO_NOTIFY : NOTIFIER_CALL_MODE_DIRECT_CHANGE);
|
||||
|
||||
return stateResponse;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue