Connect to a NTP server
Go to file
FWeinb b910b126ba Merge pull request #8 from sandeepmistry/all-architectures
Support for other boards and shields
2016-04-12 14:30:47 +02:00
examples Add UDP instance argument in constructor to support more architectures 2016-04-08 16:34:51 -04:00
keywords.txt Adding support for getting numerical day of the week where 0 = Sunday 2016-03-30 22:26:04 -07: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 Add UDP instance argument in constructor to support more architectures 2016-04-08 16:34:51 -04:00
NTPClient.h Add UDP instance argument in constructor to support more architectures 2016-04-08 16:34:51 -04:00
README.md Add UDP instance argument in constructor to support more architectures 2016-04-08 16:34:51 -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(ntpUDP);

// By default 'time.nist.gov' is used.
NTPClient timeClient;

// 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 ( "." );
  }

}

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