NTPClient/examples/Advanced/Advanced.ino
Fabrice Weinberg 25797f1f86 Initial commit
2015-12-08 17:21:16 +01:00

33 lines
678 B
C++

#include <NTPClient.h>
#include <ESP8266WiFi.h>
const char *ssid = "<SSID>";
const char *password = "<PASSWORD>";
// 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(115200);
WiFi.begin(ssid, password);
while ( WiFi.status() != WL_CONNECTED ) {
delay ( 500 );
Serial.print ( "." );
}
// Start the NTPClient after an WiFi connection is established
timeClient.begin();
}
void loop() {
timeClient.update();
Serial.println(timeClient.getFormattedTime());
delay(1000);
}