#include #include "SerialDebug.h" #include "power.h" #include "storage.h" #include "audio.h" #include "rfid.h" #include "config.h" #include "game.h" void setup() { initPower(); Serial.begin(115200); delay(2000); initStorage(); initConfig(); initAudio(); initRfid(); initGame(); } void loop() { debugHandle(); handleAudio(); //handleRfid(); handleGame(); handlePower(); }