62f3d3fc7a
use ESP32 rather than ESP_PLATFORM - it's ambigious standardise to ifdef ESP32 elif defined(ESP8266) use ifdef over if defined where possible
31 lines
605 B
C++
31 lines
605 B
C++
#ifndef NTPStatus_h
|
|
#define NTPStatus_h
|
|
|
|
#ifdef ESP32
|
|
#include <WiFi.h>
|
|
#include <AsyncTCP.h>
|
|
#elif defined(ESP8266)
|
|
#include <ESP8266WiFi.h>
|
|
#include <ESPAsyncTCP.h>
|
|
#endif
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <AsyncJson.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <NtpClientLib.h>
|
|
#include <SecurityManager.h>
|
|
#include <TimeLib.h>
|
|
|
|
#define MAX_NTP_STATUS_SIZE 1024
|
|
#define NTP_STATUS_SERVICE_PATH "/rest/ntpStatus"
|
|
|
|
class NTPStatus {
|
|
public:
|
|
NTPStatus(AsyncWebServer* server, SecurityManager* securityManager);
|
|
|
|
private:
|
|
void ntpStatus(AsyncWebServerRequest* request);
|
|
};
|
|
|
|
#endif // end NTPStatus_h
|