2018-02-26 00:11:31 +00:00
|
|
|
#ifndef NTPStatus_h
|
|
|
|
#define NTPStatus_h
|
|
|
|
|
2020-01-20 11:14:46 +00:00
|
|
|
#include <time.h>
|
2019-12-24 11:19:19 +00:00
|
|
|
#ifdef ESP32
|
|
|
|
#include <WiFi.h>
|
|
|
|
#include <AsyncTCP.h>
|
2020-01-20 11:14:46 +00:00
|
|
|
#include <lwip/apps/sntp.h>
|
2019-12-24 11:19:19 +00:00
|
|
|
#elif defined(ESP8266)
|
2019-12-03 23:16:06 +00:00
|
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#include <ESPAsyncTCP.h>
|
2020-01-20 11:14:46 +00:00
|
|
|
#include <sntp.h>
|
2018-11-11 16:44:29 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-26 00:11:31 +00:00
|
|
|
#include <ArduinoJson.h>
|
2019-11-30 09:58:28 +00:00
|
|
|
#include <AsyncJson.h>
|
2019-12-03 23:16:06 +00:00
|
|
|
#include <ESPAsyncWebServer.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_NTP_STATUS_SIZE 1024
|
2018-04-01 09:35:23 +00:00
|
|
|
#define NTP_STATUS_SERVICE_PATH "/rest/ntpStatus"
|
|
|
|
|
2018-02-26 00:11:31 +00:00
|
|
|
class NTPStatus {
|
2019-12-03 23:16:06 +00:00
|
|
|
public:
|
|
|
|
NTPStatus(AsyncWebServer* server, SecurityManager* securityManager);
|
2018-02-26 00:11:31 +00:00
|
|
|
|
2019-12-03 23:16:06 +00:00
|
|
|
private:
|
|
|
|
void ntpStatus(AsyncWebServerRequest* request);
|
2018-02-26 00:11:31 +00:00
|
|
|
};
|
|
|
|
|
2019-12-03 23:16:06 +00:00
|
|
|
#endif // end NTPStatus_h
|