Simplest ESP8266 Local Time Internet Clock With OLED

98K348105

Intro: Simplest ESP8266 Local Time Internet Clock With OLED

I was looking for a straightforward clock to use with a 128x64 OLED I got from Adafruit but found that a lot of the implementations were too cumbersome, involved a ton of code, weren't clear on what NTP servers to use and how, and basically offered very little in terms of making a clock with the LOCAL time (not UTC, which is easy enough to get). So I set about doing my own research and ended up with this simple clock that leverages already made libraries to minimize the code footprint, while offering some interesting tweaks in displaying the time (like AM/PM, 12-hour format, names for months, days, etc). This instructable assumes you have some experience programming ESP-01s but if not, there are a ton of wonderful tutorials available on Instructables! Enjoy!

STEP 1: Components

For this instructable you will need:

  • ESP8266-01 module
  • 128x64 OLED with I2C interface
  • 3.3V power supply
  • A way to program the ESP-01

STEP 2: Wire It Up!

The wiring is simple. Just follow the diagram above and connect the wires. Then get a 3.3V power supply (I used a step-down module to go from 12V to 3.3 but you can use whatever you have in your arsenal as long as it outputs 3.3V and at least 0.5 A).

STEP 3: Program the ESP-01

This step can be frustrating if you haven't done it before, but once you get the hang of how the ESP boards work and have the correct drivers and libraries installed in Arduino, you can go ahead and use the following code. But first, you will need to download and install the following libraries:

You may need to modify some of the code according to what OLED you're using (as long as it's SSD1306 it'll work but you may need to update the hex I2C address) and then you may have to change some of the Timezone rules depending on your timezone and daylight savings time rules. Then upload the code attached and you should be done!

STEP 4: See It Go!

Once you have programmed the ESP, plugged everything in, make sure you have 3.3V going into the setup and then power it on and see your correct time on the tiny display!

66 Comments

Hello,
I try the sketch with Arduino 1.8.19 and with Arduino 2.0 and esach tile I get the following error:
class SSD1306 has no member named init for the line : display.init();
Thank's in advance for your help
There are many kinds of OLED SSD1306 libraries. It seems that you have installed the wrong one, or there is a library conflict related to OLED in your file-C slot->Arduino->libraries
've done this project, including creating the new 3D printed shell, which I assembled and finished loading date (shown): May 1, 2023.
Remarks: I created a new 3D printing shell (STL format, which can be put into your printer to print, if you want STL, please leave a message for your

我已經做好這個項目,也含創建新的3D打印殻体,我組裝完成裝入日期(顯示):5月1日2023年
備註:我創建新的3D打印殻体(STL格式,可以投入你的打印機來打印,如果你要你要STL請留言你的@信箱,可以分享給大家

Hello, I am from Taiwan(台灣), I am studying NTPClient in the code, I changed it to: "tw.ntp.org"//Taiwan time zone, and also: TimeChangeRule usCDT = {"CDT", Second, Sun, Mar, 2 , 420}; //Taiwan UTC time _ +8, now the Taiwan time is displayed correctly. This project is great, I learned the knowledge, and I am very grateful to the author for publishing, thank you
please help me, my oled won't show screen, it's not broken oled... because if i have another sketch the oled works...
Schematic hand sketch shows scl and sda in wrong positions so you may have to swap these. I did and that made the display work.
bạn tìm dòng code này SSD1306 display(0x3c, 0, 2); //0x3d for the Adafruit 1.3" OLED, 0x3C being the usual address of the OLED 0.96" thay 0x3d thành 0x3c dùng cho loại LCD 0.96 Inch

Compiler gives: "WARNING: library Timezone claims to run on (avr) architecture(s) and may be incompatible with your current board which runs on (esp8266) architecture(s)."

Does this mean anything?

The reason is the author only works exclusively with AVR even though the library works with ESP8266 and ESP32 just fine. You can ignore the error, or you can modify a file in the library directory to have it know that it will work correctly.

Look for a file in the library directory in the Timezone folder called...
library.properties
open as a text file and change...
architectures=avr
to
architectures=avr,esp8266,esp32
Can you please suggest what changes would be necessary for 24 Hour time format?
Or do you have a 24 Hr version?
change: // format the time to 12-hour format with AM/PM and no seconds t += hourFormat12(local);
t += ":";
if(minute(local) < 10) // add a zero if minute is under 10
t += "0";
t += minute(local);
t += " ";
t += ampm[isPM(local)];

to:
t += hour(local);
t += ":";
if(minute(local) < 10) // add a zero if minute is under 10
t += "0";
t += minute(local);
t += ":";
if(second(local) < 10) // add a zero if minute is under 10
t += "0";
t += second(local);

you can delete the seconds
so this code works great only issue i am having is the clock is a hour fast.. I changed the timezone code to central with no change. anyone help with what to do to change the hour its ahead.. my guess is daylight savings change is the issue.

TimeChangeRule usCDT = {"CDT", Second, Sun, Mar, 2, -300}; //UTC - 5 hours - change this as needed
TimeChangeRule usCST = {"CST", First, Sun, Nov, 2, -360}; //UTC - 6 hours - change this as needed
Timezone usCentral(usCDT, usCST);
local = usCentral.toLocal(utc);
It's because you didn't change the values of the last numbers in the function. -300 is 5 hours (5*60) but you actually need 360 there and 420 in the second row, because you're an extra hour behind the Prime meridian. So if you change the first line to -360 and second to -420 you should be good to go.
It worked.. I thank you sir.. I like this format of the clock and date.. Nice work
Pourquoi les projets sur instructable ne fonctionne jamais!
hi, can you launched sensor fluxgate flc100 magnetometr with ardunio and conected to pc wiht bleuthos? thack you very much
Great project for simple clock. I am trying to change timezone with following modifications:

TimeChangeRule usPDT = {"PDT", Second, Sun, Mar, 2, -420}; //UTC - 7 hours - change this as needed
TimeChangeRule usPST = {"PST", First, Sun, Nov, 2, -480}; //UTC - 8 hours - change this as needed
Timezone usPacific(usPST, usPDT);
local = usPacific.toLocal(utc);

However, it seems that the time is showing PST instead of PDT (currently it is June so should be daylight saving PDT time instead).

Where may I have missed it?

Thanks in advance.


More Comments