This commit is contained in:
Matthew Frost 2023-06-21 21:03:58 +02:00
parent c784cc72cb
commit 59885577ee
2 changed files with 10 additions and 1 deletions
include
src

View file

@ -12,6 +12,12 @@
#include "WiFi.h"
#endif
#ifdef LOCAL_ACL
#include "acl.h"
ACL acl = {
};
#endif
#ifdef WEB_SERVER
#include <AsyncTCP.h>
#include "ESPAsyncWebServer.h"

View file

@ -7,7 +7,10 @@ const unsigned long displayDelay = 1000; // Delay in milliseconds after which th
const unsigned long wifiRebootTimeout = 20000; // Delay before reboot after disconnect
unsigned int bitCount = 0; // Variable to keep track of the bit count
unsigned int maxReaderWaitTime = 9000; // Variable to timeout reader after too long of no data.
AsyncWebServer server(80);
#ifdef WEB_SERVER
AsyncWebServer server(80);
#endif
#ifdef WIFI