Created
May 26, 2016 10:59
-
-
Save bembu/04d324cda49f3b279c4eb901ea2e2ce7 to your computer and use it in GitHub Desktop.
A Wemos digital clock showing NTP Timeserver synced time on an OLED shield
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <TimeLib.h> | |
#include <ESP8266WiFi.h> | |
#include <WiFiUdp.h> | |
#include <SPI.h> | |
#include <Wire.h> | |
#include <Adafruit_GFX.h> | |
// Using a modified fork from | |
// https://github.com/mcauser/Adafruit_SSD1306/tree/esp8266-64x48 | |
#include <Adafruit_SSD1306.h> | |
#define OLED_RESET 0 // GPIO0 | |
Adafruit_SSD1306 display(OLED_RESET); | |
const char ssid[] = "goforewlan"; // your network SSID (name) | |
const char pass[] = "Digitalisaati0"; // your network password | |
IPAddress timeServer(132, 163, 4, 101); // time-a.timefreq.bldrdoc.gov | |
const int timeZone = 3; | |
WiFiUDP Udp; | |
unsigned int localPort = 8888; // local port to listen for UDP packets | |
void setup() | |
{ | |
Serial.begin(9600); | |
display.begin(SSD1306_SWITCHCAPVCC, 0x3C); | |
display.clearDisplay(); | |
display.setTextSize(1); | |
display.setTextColor(WHITE); | |
display.setCursor(0,0); | |
display.display(); | |
WiFi.begin(ssid, pass); | |
while (WiFi.status() != WL_CONNECTED) { | |
delay(100); | |
Serial.print("."); | |
display.print("."); | |
display.display(); | |
} | |
Serial.println(); | |
display.clearDisplay(); | |
display.setCursor(0,0); | |
display.print("IP: "); | |
display.println(WiFi.localIP()); | |
Udp.begin(localPort); | |
setSyncProvider(getNtpTime); | |
display.display(); | |
display.setCursor(0,0); | |
delay(2000); | |
} | |
time_t prevDisplay = 0; | |
void loop() | |
{ | |
if (timeStatus() != timeNotSet) { | |
if (now() != prevDisplay) { //update the display only if time has changed | |
prevDisplay = now(); | |
digitalClockDisplayOled(); | |
} | |
} | |
} | |
void digitalClockDisplayOled(){ | |
display.clearDisplay(); | |
display.setCursor(0,0); | |
display.print(hour()); | |
printDigitsOled(minute()); | |
printDigitsOled(second()); | |
display.display(); | |
} | |
void printDigitsOled(int digits){ | |
display.print(":"); | |
if(digits < 10) | |
display.print('0'); | |
display.print(digits); | |
} | |
void digitalClockDisplaySerial(){ | |
// digital clock display of the time | |
Serial.print(hour()); | |
printDigitsSerial(minute()); | |
printDigitsSerial(second()); | |
Serial.print(" "); | |
Serial.print(day()); | |
Serial.print("."); | |
Serial.print(month()); | |
Serial.print("."); | |
Serial.print(year()); | |
Serial.println(); | |
} | |
void printDigitsSerial(int digits){ | |
// utility for digital clock display: prints preceding colon and leading 0 | |
Serial.print(":"); | |
if(digits < 10) | |
Serial.print('0'); | |
Serial.print(digits); | |
} | |
/*-------- NTP code ----------*/ | |
const int NTP_PACKET_SIZE = 48; // NTP time is in the first 48 bytes of message | |
byte packetBuffer[NTP_PACKET_SIZE]; //buffer to hold incoming & outgoing packets | |
time_t getNtpTime() | |
{ | |
while (Udp.parsePacket() > 0) ; // discard any previously received packets | |
Serial.println("Transmit NTP Request"); | |
sendNTPpacket(timeServer); | |
uint32_t beginWait = millis(); | |
while (millis() - beginWait < 1500) { | |
int size = Udp.parsePacket(); | |
if (size >= NTP_PACKET_SIZE) { | |
Serial.println("Receive NTP Response"); | |
Udp.read(packetBuffer, NTP_PACKET_SIZE); // read packet into the buffer | |
unsigned long secsSince1900; | |
// convert four bytes starting at location 40 to a long integer | |
secsSince1900 = (unsigned long)packetBuffer[40] << 24; | |
secsSince1900 |= (unsigned long)packetBuffer[41] << 16; | |
secsSince1900 |= (unsigned long)packetBuffer[42] << 8; | |
secsSince1900 |= (unsigned long)packetBuffer[43]; | |
return secsSince1900 - 2208988800UL + timeZone * SECS_PER_HOUR; | |
} | |
} | |
Serial.println("No NTP Response :-("); | |
return 0; // return 0 if unable to get the time | |
} | |
// send an NTP request to the time server at the given address | |
void sendNTPpacket(IPAddress &address) | |
{ | |
// set all bytes in the buffer to 0 | |
memset(packetBuffer, 0, NTP_PACKET_SIZE); | |
// Initialize values needed to form NTP request | |
// (see URL above for details on the packets) | |
packetBuffer[0] = 0b11100011; // LI, Version, Mode | |
packetBuffer[1] = 0; // Stratum, or type of clock | |
packetBuffer[2] = 6; // Polling Interval | |
packetBuffer[3] = 0xEC; // Peer Clock Precision | |
// 8 bytes of zero for Root Delay & Root Dispersion | |
packetBuffer[12] = 49; | |
packetBuffer[13] = 0x4E; | |
packetBuffer[14] = 49; | |
packetBuffer[15] = 52; | |
// all NTP fields have been given values, now | |
// you can send a packet requesting a timestamp: | |
Udp.beginPacket(address, 123); //NTP requests are to port 123 | |
Udp.write(packetBuffer, NTP_PACKET_SIZE); | |
Udp.endPacket(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You left your Wireless info in your code... probably not the best idea...
Great code!
Thanks