update schematic and add production files

This commit is contained in:
2021-10-08 16:00:18 +02:00
parent d83bea3725
commit 72ce01ef37
24 changed files with 296 additions and 92 deletions

View File

@@ -1,6 +1,6 @@
#include <Arduino.h>
#include "power.h"
#include "storage.h"
#include "audio.h"
#include "rfid.h"
@@ -10,9 +10,10 @@
void setup()
{
initPower();
Serial.begin(115200);
delay(2000);
initStorage();
initConfig();
initAudio();
@@ -25,6 +26,7 @@ void setup()
void loop()
{
handleAudio();
handleRfid();
//handleRfid();
handleGame();
handlePower();
}