Fixed Readme
Initialization with a different timeserver had a missing ntpUDP Added the default values for interval and offset to the comment of the default constructor in the ReadMe
This commit is contained in:
parent
ac19e0d7db
commit
85c4caca94
11
README.md
11
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 = "<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);
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user