mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
26 lines
544 B
C++
26 lines
544 B
C++
#ifndef APStatus_h
|
|
#define APStatus_h
|
|
|
|
#include <WiFi.h>
|
|
#include <AsyncTCP.h>
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <IPAddress.h>
|
|
|
|
#include "SecurityManager.h"
|
|
#include "APSettingsService.h"
|
|
|
|
#define AP_STATUS_SERVICE_PATH "/rest/apStatus"
|
|
|
|
class APStatus {
|
|
public:
|
|
APStatus(AsyncWebServer * server, SecurityManager * securityManager, APSettingsService * apSettingsService);
|
|
|
|
private:
|
|
APSettingsService * _apSettingsService;
|
|
void apStatus(AsyncWebServerRequest * request);
|
|
};
|
|
|
|
#endif
|