Difference between revisions of "WeMOS: NTP Jam Digital"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| (7 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | ==Code== | ||
| + | |||
#include <NTPClient.h> | #include <NTPClient.h> | ||
#include <ESP8266WiFi.h> | #include <ESP8266WiFi.h> | ||
#include <WiFiUdp.h> | #include <WiFiUdp.h> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
const char *ssid = "ssid"; | const char *ssid = "ssid"; | ||
const char *password = "password"; | const char *password = "password"; | ||
| + | |||
const long utcOffsetInSeconds = 3600; | const long utcOffsetInSeconds = 3600; | ||
| + | |||
char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; | char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; | ||
| Line 29: | Line 27: | ||
timeClient.begin(); | timeClient.begin(); | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
} | } | ||
| Line 41: | Line 32: | ||
timeClient.update(); | timeClient.update(); | ||
| − | + | Serial.print(daysOfTheWeek[timeClient.getDay()]); | |
| − | + | Serial.print(", "); | |
| − | + | Serial.print(timeClient.getHours()+6); | |
| − | + | Serial.print(":"); | |
| − | + | Serial.print(timeClient.getMinutes()); | |
| − | + | Serial.print(":"); | |
| − | + | Serial.println(timeClient.getSeconds()); | |
| − | + | //Serial.println(timeClient.getFormattedTime()); | |
| − | + | ||
| − | |||
| − | |||
delay(1000); | delay(1000); | ||
} | } | ||
| + | |||
Latest revision as of 13:34, 23 November 2019
Code
#include <NTPClient.h>
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
const char *ssid = "ssid";
const char *password = "password";
const long utcOffsetInSeconds = 3600;
char daysOfTheWeek[7][12] = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"};
// Define NTP Client to get time
WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP, "pool.ntp.org", utcOffsetInSeconds);
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.print(daysOfTheWeek[timeClient.getDay()]);
Serial.print(", ");
Serial.print(timeClient.getHours()+6);
Serial.print(":");
Serial.print(timeClient.getMinutes());
Serial.print(":");
Serial.println(timeClient.getSeconds());
//Serial.println(timeClient.getFormattedTime());
delay(1000);
}