mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
27 lines
559 B
C++
27 lines
559 B
C++
#ifndef SystemStatus_h
|
|
#define SystemStatus_h
|
|
|
|
#include <WiFi.h>
|
|
#include <AsyncTCP.h>
|
|
#include <FS.h>
|
|
#include <LITTLEFS.h>
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <SecurityManager.h>
|
|
|
|
#include <uuid/log.h> // proddy added
|
|
|
|
#define MAX_ESP_STATUS_SIZE 1024
|
|
#define SYSTEM_STATUS_SERVICE_PATH "/rest/systemStatus"
|
|
|
|
class SystemStatus {
|
|
public:
|
|
SystemStatus(AsyncWebServer * server, SecurityManager * securityManager);
|
|
|
|
private:
|
|
void systemStatus(AsyncWebServerRequest * request);
|
|
};
|
|
|
|
#endif // end SystemStatus_h
|