added OTA

This commit is contained in:
2021-10-24 14:06:59 +02:00
parent 62ce317dda
commit af26d5c071
11 changed files with 123 additions and 18 deletions

View File

@@ -6,6 +6,7 @@
#include "audio.h"
#include "rfid.h"
#include "config.h"
#include "ota.h"
#include "game.h"
@@ -18,8 +19,9 @@ void setup()
initStorage();
initConfig();
initOta();
initAudio();
//initRfid();
initRfid();
initGame();
@@ -30,7 +32,8 @@ void loop()
debugHandle();
handleAudio();
//handleRfid();
handleGame();
handleRfid();
//handleGame();
handlePower();
handleOta();
}