diff --git a/README.md b/README.md index 685cc50..29462dc 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# NTPClient +# NTPClient [![Build Status](https://travis-ci.org/arduino-libraries/NTPClient.svg?branch=master)](https://travis-ci.org/arduino-libraries/NTPClient) @@ -17,12 +17,13 @@ const char *password = ""; WiFiUDP ntpUDP; -// By default 'time.nist.gov' is used. +// By default 'time.nist.gov' is used with 60 seconds update interval and +// no offset 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); @@ -38,9 +39,9 @@ void setup(){ void loop() { timeClient.update(); - + Serial.println(timeClient.getFormattedTime()); - + delay(1000); } ```