Connect to a NTP server
Go to file
2016-05-31 16:33:15 -04:00
examples Added functions for changing the timeOffset and updateInterval later 2016-05-14 12:04:18 +02:00
.travis.yml Initial add travis arduino build tests 2016-04-18 21:21:41 +02:00
CHANGELOG Update CHANGELOG 2016-05-31 16:33:15 -04:00
keywords.txt Rename getRawTime to getEpochTime 2016-04-15 09:09:23 -04:00
library.json Change email to arduino.cc 2016-05-31 16:29:40 -04:00
library.properties Update library.properties 2016-04-19 09:09:24 -04:00
NTPClient.cpp Added functions for changing the timeOffset and updateInterval later 2016-05-14 12:04:18 +02:00
NTPClient.h Added functions for changing the timeOffset and updateInterval later 2016-05-14 12:04:18 +02:00
README.md Merge pull request #17 from SirUli/master 2016-05-25 21:30:40 +02:00

NTPClient

Build Status

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 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(ntpUDP, "europe.pool.ntp.org", 3600, 60000);

void setup(){
  Serial.begin(115200);
  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);
}