2015-12-08 17:21:16 +01:00
|
|
|
# NTPClient
|
|
|
|
|
2016-04-18 21:38:19 +02:00
|
|
|
[![Build Status](https://travis-ci.org/arduino-libraries/NTPClient.svg?branch=master)](https://travis-ci.org/arduino-libraries/NTPClient)
|
|
|
|
|
2015-12-08 17:21:16 +01:00
|
|
|
Connect to a NTP server, here is how:
|
|
|
|
|
|
|
|
```cpp
|
|
|
|
#include <NTPClient.h>
|
2016-04-08 22:34:51 +02:00
|
|
|
// change next line to use with another board/shield
|
2015-12-08 17:21:16 +01:00
|
|
|
#include <ESP8266WiFi.h>
|
2016-04-08 22:34:51 +02:00
|
|
|
//#include <WiFi.h> // for WiFi shield
|
|
|
|
//#include <WiFi101.h> // for WiFi 101 shield or MKR1000
|
|
|
|
#include <WiFiUdp.h>
|
2015-12-08 17:21:16 +01:00
|
|
|
|
|
|
|
const char *ssid = "<SSID>";
|
|
|
|
const char *password = "<PASSWORD>";
|
|
|
|
|
2016-04-12 15:35:34 +02:00
|
|
|
WiFiUDP ntpUDP;
|
2016-04-08 22:34:51 +02:00
|
|
|
|
2015-12-08 17:21:16 +01:00
|
|
|
// By default 'time.nist.gov' is used.
|
2016-04-12 15:35:34 +02:00
|
|
|
NTPClient timeClient(ntpUDP);
|
2015-12-08 17:21:16 +01:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
void setup(){
|
|
|
|
Serial.begin(11520);
|
|
|
|
WiFi.begin(ssid, password);
|
|
|
|
|
|
|
|
while ( WiFi.status() != WL_CONNECTED ) {
|
|
|
|
delay ( 500 );
|
|
|
|
Serial.print ( "." );
|
|
|
|
}
|
|
|
|
|
2016-04-12 17:44:45 +02:00
|
|
|
timeClient.begin();
|
2015-12-08 17:21:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
timeClient.update();
|
|
|
|
|
|
|
|
Serial.println(timeClient.getFormattedTime());
|
|
|
|
|
|
|
|
delay(1000);
|
|
|
|
}
|
2015-12-12 22:19:03 +01:00
|
|
|
```
|