This commit is contained in:
e2002
2022-04-11 13:18:33 +03:00
parent 520b3455d1
commit b840b4418a
41 changed files with 661 additions and 1131 deletions

View File

@@ -11,6 +11,7 @@ class NetServer {
public:
uint8_t playlistrequest; // ClientId want the playlist
bool importRequest;
bool resumePlay;
public:
NetServer() {};
bool begin();
@@ -22,6 +23,7 @@ class NetServer {
private:
requestType_e request;
int rssi;
void getPlaylist(uint8_t clientId);
bool importPlaylist();
};