Adds rfid example code.

This commit is contained in:
Simon Weidacher
2021-12-26 14:00:30 +01:00
parent 68f1427155
commit 1788c9e5aa
6 changed files with 78 additions and 2 deletions

View File

@@ -4,6 +4,7 @@
#include "Networking.hpp"
#include "WebInterface.hpp"
#include "RFIDInterface.hpp"
extern "C" {
void app_main();
@@ -11,6 +12,7 @@ extern "C" {
Networking networking;
WebInterface webInterface;
RFIDInterface rfid;
void app_main(void) {
initArduino();
@@ -18,6 +20,6 @@ void app_main(void) {
Serial.begin(115200);
networking.connectWifi();
webInterface.start();
rfid.start();
}