From 87e20e0ff0e6315f8a85a05a389dc9875223f060 Mon Sep 17 00:00:00 2001 From: g_goessel Date: Sat, 21 May 2016 21:15:49 +0200 Subject: [PATCH] Update README.md Fixed an error in a comment. Was throwing `no matching function for call to 'NTPClient::NTPClient(const char [20], int, int)' ` otherwise --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 685cc50..b09b14e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ NTPClient timeClient(ntpUDP); // You can specify the time server pool and the offset, (in seconds) // additionaly you can specify the update interval (in milliseconds). -// NTPClient timeClient("europe.pool.ntp.org", 3600, 60000); +// NTPClient timeClient(ntpUDP, "europe.pool.ntp.org", 3600, 60000); void setup(){ Serial.begin(11520);