diff --git a/include/Program.h b/include/Program.h index 6449382..d2c92e8 100644 --- a/include/Program.h +++ b/include/Program.h @@ -3,6 +3,8 @@ #include #include +#include +#include #include "DiscordAPI.h" @@ -21,6 +23,8 @@ public: private: DiscordAPI* discord; + WiFiUDP* ntpUDP; + NTPClient* timeClient; }; #endif diff --git a/platformio.ini b/platformio.ini index 329b7c7..4de31e9 100644 --- a/platformio.ini +++ b/platformio.ini @@ -52,6 +52,7 @@ upload_speed = 921600 lib_deps = ; example: ; erropix/ESP32 AnalogWrite@0.2 + arduino-libraries/NTPClient@^3.2.1 ; Checker settings check_tool = clangtidy, cppcheck diff --git a/src/Program.cpp b/src/Program.cpp index 9dbdbea..129ac98 100644 --- a/src/Program.cpp +++ b/src/Program.cpp @@ -21,12 +21,33 @@ Program::Program() { Serial.println(WiFi.localIP()); // Send the IP address of the ESP8266 to the computer - + //init obj this->discord = new DiscordAPI(DISCORD_HOOK); - delay(1000); - Serial.println(this->discord->sendHeure("10h", "18h")); + this->ntpUDP = new WiFiUDP(); + this->timeClient = new NTPClient(*this->ntpUDP, "pool.ntp.org", 3600*2);//*2 = gnt+2 + + //Serial.println(this->discord->sendHeure("10h", "18h")); } void Program::loop() { // Loop + delay(1000); + + this->timeClient->update(); + + int currentHour = this->timeClient->getHours(); + Serial.print("Hour: "); + Serial.println(currentHour); + + int currentMinute = this->timeClient->getMinutes(); + Serial.print("Minutes: "); + Serial.println(currentMinute); + + int currentSecond = this->timeClient->getSeconds(); + Serial.print("Seconds: "); + Serial.println(currentSecond); + + int currentDayOfWeek = this->timeClient->getDay(); + Serial.print("Day of week: "); + Serial.println(currentDayOfWeek); } diff --git a/src/main.cpp b/src/main.cpp index 74bf5a7..6828cdb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -9,3 +9,5 @@ void setup() { void loop() { program->loop(); } + +