2018-02-26 00:11:31 +00:00
|
|
|
#ifndef APStatus_h
|
|
|
|
#define APStatus_h
|
|
|
|
|
2018-11-11 16:44:29 +00:00
|
|
|
#if defined(ESP8266)
|
|
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#include <ESPAsyncTCP.h>
|
|
|
|
#elif defined(ESP_PLATFORM)
|
|
|
|
#include <WiFi.h>
|
|
|
|
#include <AsyncTCP.h>
|
|
|
|
#endif
|
|
|
|
|
2018-02-26 00:11:31 +00:00
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
#include <ArduinoJson.h>
|
2019-04-14 07:52:40 +00:00
|
|
|
#include <AsyncArduinoJson6.h>
|
2018-02-26 00:11:31 +00:00
|
|
|
#include <IPAddress.h>
|
2019-05-31 18:58:33 +00:00
|
|
|
#include <SecurityManager.h>
|
2018-02-26 00:11:31 +00:00
|
|
|
|
2019-04-14 07:52:40 +00:00
|
|
|
#define MAX_AP_STATUS_SIZE 1024
|
2018-04-01 09:35:23 +00:00
|
|
|
#define AP_STATUS_SERVICE_PATH "/rest/apStatus"
|
|
|
|
|
2018-02-26 00:11:31 +00:00
|
|
|
class APStatus {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2019-09-28 20:29:46 +00:00
|
|
|
APStatus(AsyncWebServer* server, SecurityManager* securityManager);
|
2018-02-26 00:11:31 +00:00
|
|
|
|
|
|
|
private:
|
2019-07-14 21:13:26 +00:00
|
|
|
|
2018-02-26 00:11:31 +00:00
|
|
|
void apStatus(AsyncWebServerRequest *request);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // end APStatus_h
|