DS3231 Time Set ESP8266 Real Time Clock With Serial Monitor Easily

Here I will say DS3231 Time Set ESP8266 Real-Time Clock With Serial Monitor Easily.

The DS3231 is a very accurate & widely used Real-Time Clock (RTC) module. This module is used in Arduino based projects. This module also works with Raspberry Pi. So let’s start DS3231 Time Set ESP8266 Real-Time Clock With Serial Monitor Easily.

ds3231 rtc module with cr2032 coin battery

Before connecting DS3231 with NodeMCU, make sure you have inserted the CR2032 battery into DS3231. It is recommended to use a Rechargeable cell. But you can also use a non-rechargeable cells.

Components Used:(Click to Buy)

Library for DS3231 Time Set ESP8266

Now open your Arduino IDE and go to the Library manager from the menu bar.
Now search for RTCLib and select the latest version to download. This library is provided by Adafruit as you see in the image below.

rtclib for ds3231 by adafruit in arduino ide

Connect DS3231 with ESP8266 NodeMCU

After adding the library we have to connect DS3231 with ESP8266 NodeMCThe connection is very simple as you can see the diagram below.

DS3231 Time Set ESP8266
ds3231 rtc module with esp8266 nodemcu

Clock with Temperature using DS3231 & SSD1306 in ESP8266

DS3231 Time Set ESP8266 With Serial Monitor

After all the connection done we have to write a simple code to update the current into DS3231 module.

Remember only write time once after installing the CR2032 coin battery. As long as there is power in the battery, you will not get any error in the time.

You can use the following code to update time.

ds3231 rtc module with cr2032 coin battery

Code Explain for DS3231 Time Set ESP8266

The code is a very simple one. It will set the time & then display the time in serial monitor from DS3231.

rtc.adjust(DateTime(F(__DATE__),F(__TIME__)));

In line 18, the the rtc object is setting the time according to your computer time. It will set present clock time of your system.

rtc.adjust(DateTime(2014, 1, 21, 3, 0, 0));

In line 19, you can set the time manually just sending the date-time value to the function in the order of year, month, date, hour, min, second.
In the following code, we are setting time if system. So we commented the line 19.

Arduino Sketch of DS3231 Time Set ESP8266

Output

After opening serial monitor in 9600 baud rate you can see the following output i.e. Time fetched from DS3231.

DS3231 Time Set ESP8266

Share with Friends
0 0 votes
Rating
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments