feat: add Json config (unfinished)

This commit is contained in:
2021-10-04 07:41:29 +02:00
parent 00468f0b3a
commit 584f88dec7
11 changed files with 84 additions and 241 deletions

View File

@@ -4,6 +4,7 @@
#include "storage.h"
#include "audio.h"
#include "rfid.h"
#include "game.h"
void setup()
@@ -14,10 +15,12 @@ void setup()
initStorage();
initAudio();
initRfid();
initGame();
}
void loop()
{
handleAudio();
handleRfid();
handleGame();
}