ESP8266 NTP Clock With 16x2 I2C LCD Display

by ElectroIoTIN in Circuits > Arduino

174 Views, 0 Favorites, 0 Comments

ESP8266 NTP Clock With 16x2 I2C LCD Display

demo.jpg

This project uses an ESP8266 NodeMCU to create a 12-hour format NTP clock with AM/PM, date, and day of the week, displayed on a 16x2 I2C LCD. The clock synchronizes time via the NTP (Network Time Protocol) to ensure accuracy.

Features

  1. Displays real-time clock (12-hour format) with AM/PM indicator.
  2. Shows current date and weekday.
  3. Synchronizes time via NTP server.
  4. Uses I2C 16x2 LCD for display.
  5. Auto-updates time based on Indian Standard Time (IST, UTC+5:30).


Components Required

ESP8266 NodeMCU 1

16x2 I2C LCD 1

Jumper Wires As needed

Circuit Diagram

sc.JPG

Installation & Setup

1. Install Required Libraries

Make sure you have the following libraries installed in Arduino IDE:

  1. LiquidCrystal_I2C (Download)
  2. NTPClient (Download)
  3. ESP8266WiFi (Comes with ESP8266 board package)

2. Upload the Code

  1. Open the provided code in Arduino IDE.
  2. Replace your_SSID and your_PASSWORD with your WiFi credentials.
  3. Select ESP8266 NodeMCU as the board.
  4. Upload the code and open the Serial Monitor (115200 baud rate).
  5. https://github.com/ElectroIoT/ESP8266-NTC-Indian-Time-clock-Using-16x2-LCD


DOWNLOAD CODE

https://github.com/ElectroIoT/ESP8266-NTC-Indian-Time-clock-Using-16x2-LCD

How the Code Works

  1. WiFi Connection: Connects ESP8266 to a WiFi network.
  2. NTP Synchronization: Fetches time from an NTP server (pool.ntp.org).
  3. Time Conversion: Converts 24-hour format to 12-hour format with AM/PM.
  4. Display Update: Updates the LCD every second with time, date, and weekday.

Troubleshooting

  1. LCD not displaying anything?
  2. Run the I2C Scanner to find the correct I2C address and update it in the code.
  3. Ensure SDA and SCL pins are connected properly.
  4. WiFi not connecting?
  5. Double-check your WiFi SSID and Password in the code.
  6. Make sure your router is working correctly.