From 63a705ddd49b42fc0172c9fbc59724e71e9459c1 Mon Sep 17 00:00:00 2001 From: Torrie Fischer Date: Mon, 11 Dec 2023 08:05:33 +0100 Subject: [PATCH] platform: use pool.ntp.org for ntp server --- src/Platform.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Platform.cpp b/src/Platform.cpp index 0d44e0f..cb04cb7 100644 --- a/src/Platform.cpp +++ b/src/Platform.cpp @@ -16,8 +16,7 @@ #include WiFiUDP wifiUdp; -//NTPClient timeClient(wifiUdp, "pool.ntp.org", 3600 * -7); -NTPClient timeClient(wifiUdp, "10.0.0.1", 3600 * -7); +NTPClient timeClient(wifiUdp, "pool.ntp.org", 3600 * -7); #endif #endif