19 lines
356 B
C
19 lines
356 B
C
|
#ifndef WEB_SERVER_H
|
||
|
#define WEB_SERVER_H
|
||
|
|
||
|
#include <AsyncTCP.h>
|
||
|
#include "ESPAsyncWebServer.h"
|
||
|
#include "SPIFFS.h"
|
||
|
#include <ArduinoJson.h>
|
||
|
#include <AsyncJson.h>
|
||
|
|
||
|
// Set web server port number to 80
|
||
|
AsyncWebServer server(80);
|
||
|
|
||
|
#ifdef LOCAL_ACL
|
||
|
#include "ACL.h"
|
||
|
ACL acl = {
|
||
|
};
|
||
|
#endif
|
||
|
|
||
|
#endif
|