offline
This commit is contained in:
parent
c784cc72cb
commit
59885577ee
2 changed files with 10 additions and 1 deletions
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue