nuevos modos de reproducción: Play Folder, Play Folder Loop, Play Folder

Random.
This commit is contained in:
snt 2024-05-09 14:07:24 +02:00
parent cd0105c9f9
commit f67ad9b1e1
7 changed files with 83 additions and 4 deletions

View file

@ -22,7 +22,10 @@ enum Status
Paused,
PlayingOnce,
PlayingLoop,
Iddle
Iddle,
PlayingFolder,
PlayingFolderLoop,
PlayingFolderRandom
};
static const char* StatusStr[] =
@ -30,8 +33,11 @@ static const char* StatusStr[] =
"Stop",
"Pause",
"Playing One",
"Playing Loop",
"Playing One Loop",
"Iddle",
"Playing Folder",
"Playing Folder Loop",
"Playing Folder Random",
0x0
};
@ -52,5 +58,8 @@ struct layerData {
int pan;
int pitch;
float duration;
int address;
unsigned int universe;
int device;
};
#endif // DEFINES_H