rename esp32 project folder

This commit is contained in:
2021-10-01 09:52:08 +02:00
parent 87d5ab8e78
commit 2c0e996d6b
26 changed files with 0 additions and 27 deletions

View File

@@ -0,0 +1,20 @@
#include <Arduino.h>
#include "storage.h"
#include "audio.h"
void setup()
{
Serial.begin(115200);
delay(1000);
initStorage();
initAudio();
}
void loop()
{
handleAudio();
}