2018-02-26 00:11:31 +00:00
|
|
|
#ifndef NTPStatus_h
|
|
|
|
#define NTPStatus_h
|
|
|
|
|
2018-11-11 16:44:29 +00:00
|
|
|
#if defined(ESP8266)
|
|
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#include <ESPAsyncTCP.h>
|
|
|
|
#elif defined(ESP_PLATFORM)
|
|
|
|
#include <WiFi.h>
|
|
|
|
#include <AsyncTCP.h>
|
|
|
|
#endif
|
|
|
|
|
2018-02-26 00:11:31 +00:00
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <AsyncJson.h>
|
|
|
|
#include <TimeLib.h>
|
|
|
|
#include <NtpClientLib.h>
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
NTPStatus(AsyncWebServer *server);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
AsyncWebServer* _server;
|
|
|
|
|
|
|
|
void ntpStatus(AsyncWebServerRequest *request);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // end NTPStatus_h
|