Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Majed Abouhatab, P.E.
Published © LGPL

Saving Your Sanity From Daylight Saving

We stand with Cousin Micki.

IntermediateFull instructions provided2 hours176

Things used in this project

Hardware components

Wemos D1 Mini
Espressif Wemos D1 Mini
×1
MAX7219 Microcontroller 4 In 1 Display LED 5P Line Dot Matrix Module
×2

Software apps and online services

PlatformIO IDE
PlatformIO IDE
worldtimeapi.org

Story

Read more

Schematics

Wiring and Connections

Code

main.cpp

Arduino
#include <WiFiManager.h>
#include <esp8266httpclient.h>
#include <ArduinoJson.h>
#include <U8g2lib.h>

WiFiClient client;
HTTPClient http;
StaticJsonDocument<1000> doc;
U8G2_MAX7219_64X8_F_4W_HW_SPI u8g2(U8G2_R2, SS, U8X8_PIN_NONE);
int h, m, s;
unsigned long Timestamp;
char buffer[7];

void GetTime(void)
{
  Serial.printf("%02d:%02d:%02d %s\r\n", h == 0 ? 12 : (h > 12 ? h - 12 : h), m, s, h > 11 ? "PM" : "AM");
  do
  {
    http.begin(client, "http://worldtimeapi.org/api/ip");
    yield();
  }
  while (http.GET() < 0);
  deserializeJson(doc, http.getString());
  http.end();
  h = doc["datetime"].as<String>().substring(11, 13).toInt();
  m = doc["datetime"].as<String>().substring(14, 16).toInt();
  s = doc["datetime"].as<String>().substring(17, 19).toInt();
  Serial.printf("%02d:%02d:%02d %s\r\n", h == 0 ? 12 : (h > 12 ? h - 12 : h), m, s, h > 11 ? "PM" : "AM");
}

void setup()
{
  u8g2.begin();
  u8g2.setContrast(0);
  u8g2.setFont(u8g2_font_chikita_tr);
  u8g2.clearBuffer();
  u8g2.drawStr(1, 6, "Connecting...");
  u8g2.sendBuffer();
  u8g2.setFont(u8g2_font_victoriabold8_8r);
  Serial.begin(115200);
  WiFiManager wm;
  wm.autoConnect("WeMos");
  GetTime();
}

void loop()
{
  if (millis() - Timestamp > 1000)
  {
    Timestamp = millis();
    s++;
    if (s > 59)
    {
      s = 0;
      m++;
      if (m > 59)
      {
        GetTime();
      }
    }
    sprintf(buffer, "%02d:%02d%s", h == 0 ? 12 : (h > 12 ? h - 12 : h), m, h > 11 ? "PM" : "AM");
    u8g2.clearBuffer();
    u8g2.drawStr(0, 7, buffer);
    u8g2.sendBuffer();
  }
}

platformio.ini

INI
[env:d1_mini]
platform = espressif8266
board = d1_mini
framework = arduino
monitor_speed = 115200
lib_deps = 
	tzapu/WiFiManager@^0.16.0
	bblanchon/ArduinoJson@^6.18.4
	olikraus/U8g2@^2.28.8

Credits

Majed Abouhatab, P.E.
54 projects • 41 followers
Electronics Professional Engineer, Pilot, Skydiver, Runner, and World Traveler.
Contact

Comments

Please log in or sign up to comment.