mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-07-29 01:52:51 +00:00
21 lines
449 B
C++
21 lines
449 B
C++
#ifndef APStatus_h
|
|
#define APStatus_h
|
|
|
|
#include <ArduinoJson.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
|