working audio

This commit is contained in:
2021-08-27 16:41:58 +02:00
parent ba973b5761
commit 489174fdc8
18 changed files with 1868 additions and 63 deletions

View File

@@ -0,0 +1,14 @@
#include "audio.h"
#include "storage.h"
void setup()
{
initAudio();
initStorage();
}
void loop()
{
handleAudio();
handleStorage();
}