Op ntp server

This commit is contained in:
richonguzman
2025-10-11 12:40:07 -03:00
parent 1abaa299e0
commit 2a86cdb0d8
9 changed files with 30 additions and 6 deletions
+1 -1
View File
@@ -27,7 +27,7 @@
extern Configuration Config;
WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP, "pool.ntp.org", 0, 15 * 60 * 1000); // Update interval 15 min
NTPClient timeClient(ntpUDP, Config.ntp.server.c_str(), 0, 15 * 60 * 1000); // Update interval 15 min
namespace NTP_Utils {