Connect to a NTP server
Go to file
2016-04-18 15:08:38 -04:00
examples Add begin API 2016-04-15 09:03:45 -04:00
CHANGELOG Add changelog 2016-04-15 09:20:11 -04:00
keywords.txt Rename getRawTime to getEpochTime 2016-04-15 09:09:23 -04:00
library.json Add to platformio 2015-12-29 14:34:16 +01:00
library.properties Add UDP instance argument in constructor to support more architectures 2016-04-08 16:34:51 -04:00
NTPClient.cpp Change return type of get components to int 2016-04-18 15:08:38 -04:00
NTPClient.h Change return type of get components to int 2016-04-18 15:08:38 -04:00
README.md Add begin API 2016-04-15 09:03:45 -04:00

NTPClient

Connect to a NTP server, here is how:

#include <NTPClient.h>
// change next line to use with another board/shield
#include <ESP8266WiFi.h>
//#include <WiFi.h> // for WiFi shield
//#include <WiFi101.h> // for WiFi 101 shield or MKR1000
#include <WiFiUdp.h>

const char *ssid     = "<SSID>";
const char *password = "<PASSWORD>";

WiFiUDP ntpUDP;

// By default 'time.nist.gov' is used.
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);

void setup(){
  Serial.begin(11520);
  WiFi.begin(ssid, password);

  while ( WiFi.status() != WL_CONNECTED ) {
    delay ( 500 );
    Serial.print ( "." );
  }

  timeClient.begin();
}

void loop() {
  timeClient.update();
  
  Serial.println(timeClient.getFormattedTime());
  
  delay(1000);
}