Difference between revisions of "WeMOS: NTP Jam Digital"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| Line 1: | Line 1: | ||
| − | #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"}; |
| − | + | ||
| − | // Define NTP Client to get time | + | // Define NTP Client to get time |
| − | WiFiUDP ntpUDP; | + | WiFiUDP ntpUDP; |
| − | NTPClient timeClient(ntpUDP, "pool.ntp.org", utcOffsetInSeconds); | + | NTPClient timeClient(ntpUDP, "pool.ntp.org", utcOffsetInSeconds); |
| − | + | ||
| − | void setup(){ | + | void setup(){ |
| − | + | Serial.begin(115200); | |
| − | + | ||
| − | + | WiFi.begin(ssid, password); | |
| − | + | ||
| − | + | while ( WiFi.status() != WL_CONNECTED ) { | |
| − | + | delay ( 500 ); | |
| − | + | Serial.print ( "." ); | |
| − | + | } | |
| − | + | ||
| − | + | timeClient.begin(); | |
| − | } | + | } |
| − | + | ||
| − | void loop() { | + | 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); | |
| − | } | + | } |
Revision as of 11:49, 23 November 2019
#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);
}