top of page

Arduino Alarm Clock using DS1307

Updated: Feb 13

In this project, you will learn to design an alarm clock using the Arduino.


Hardware Components:


1. Arduino Uno

Arduino Uno is a highly popular and versatile open-source microcontroller board that serves as the heart of numerous innovative projects. It offers an array of input-output connections, making it a preferred choice among developers and hobbyists for various applications, including the creation of an Arduino Alarm Clock using DS1307.


Arduino Uno
Arduino Uno

2. LCD module:

The LCD module, or Liquid Crystal Display, is an advanced electronic display technology that delivers crisp and clear monochromatic images. It is widely used in numerous electronic devices for its efficiency and visual appeal.

LCD module
LCD module

3. DS1307 RTC module:

The DS1307 RTC module is an essential component in this project as it plays the role of a real-time clock, accurately tracking and managing the date and time. The DS1307's design, featuring a fully binary-coded decimal clock and 56 bytes of RAM, ensures precise and reliable timekeeping.

DS1307 RTC module
DS1307 RTC module

4. Buzzer:

An integral part of the alarm clock project is the buzzer, which emits distinct alert tones. This simple yet effective acoustic device uses the piezoelectric effect to create sound when exposed to alternating currents. It is responsible for notifying users when the alarm is triggered.

Buzzer
Buzzer


5. Potentiometer:

The potentiometer is a crucial electronic component that functions as a variable resistor, allowing users to fine-tune the circuit and achieve the desired output. In the context of the alarm clock, the potentiometer is instrumental in controlling the LCD's contrast.


Potentiometer
Potentiometer

6. Push Buttons:

Push buttons serve as user interfaces to control specific parameters of the alarm clock. In this project, three push buttons are utilized to set the alarm time and configure other time-related functions.

Push Buttons
Push Buttons

7. Breadboard:

The breadboard serves as the foundation for creating electronic prototypes and experimenting with various circuit configurations. With its interconnected holes, it provides a convenient platform for assembling components like ICs, capacitors, and potentiometers, enabling quick and hassle-free testing and modifications.


Breadboard
Breadboard

Circuit Connections - Arduino Alarm Clock using DS1307


Circuit connections
Circuit connections

  1. Connect the LCD's Vss pin to the breadboard's ground rail, which is then linked to the Arduino's ground.

  2. Connect the Vdd pin of the LCD to the positive rail of the breadboard, which is connected to the 5V of the Arduino Uno.

  3. Connect the LCD's V0 to the output pin of the potentiometer.

  4. Connect the LCD's RS pin to D7 of the Arduino. Connect the LCD's RW to the ground rail of the breadboard.

  5. Connect the LCD's EN (enable) pin to D6 of the Arduino Uno.

  6. Connect the LCD's DB4 to D5 of the Arduino.

  7. Connect the LCD's DB5 to D4 of the Arduino.

  8. Connect the LCD's DB6 to D3 of the Arduino.

  9. Connect the LCD's DB7 to D2 of the Arduino.

  10. Connect the LCD's LED anode pin to the 5V rail of the breadboard.

  11. Connect the LCD's LED cathode pin to the ground rail of the breadboard.

  12. Connect the ground terminal (right) of the potentiometer to the ground rail of the breadboard.

  13. Connect the power terminal (left) of the potentiometer to the 5V rail of the breadboard.

  14. Connect the buzzer's positive leg to D11 of the Arduino Uno.

  15. Connect the buzzer's negative leg to the ground rail of the breadboard.

  16. Connect the RTC module's 5V pin to the 5V rail of the breadboard.

  17. Connect the RTC module's ground to the ground line of the breadboard.

  18. Connect the RTC module's SCL pin to A5 of the Arduino. Connect the RTC module's SDA pin to A4 of the Arduino.

  19. Connect the common left legs of the three pushbuttons to the ground rail of the breadboard.

  20. Connect the right leg of the first pushbutton to D10 of the Arduino

Code:



  1. Include the necessary libraries: In the Arduino IDE, include the following libraries: Wire.h, TimeLib.h, DS1307RTC.h, and LiquidCrystal.h. These libraries provide essential functionalities for working with the DS1307 RTC module and the LCD display.

  2. Declare tmElements_t data structure: Declare the tmElements_t data structure to store and manipulate the time in DD/MM/YY format. This structure is crucial for handling date and time-related operations in the alarm clock.

  3. Define LCD pins: Identify and define the specific pins that will be used to connect the LCD module to the Arduino Uno. Properly assign each pin for data transmission and control signals.

  4. Set alarms using pushbuttons: In the void setalarms() method, define the functions of each pushbutton. These pushbuttons will be responsible for setting the desired alarm time. For instance, pressing the first pushbutton an odd number of times may be used to set the alarm, while pressing it an even number of times can save the alarm.

  5. Set alarm and activate the buzzer: Program the alarm to trigger at 5 a.m. When the alarm is activated, use the buzzer to emit a distinct beep or sound to notify the user.

  6. Configure pin modes: In the void setup() function, set the pin modes for all the components' pins connected to the Arduino Uno. This step is essential to ensure that the pins function correctly and interact with other components as intended.

  7. Set pushbutton settings: Utilize the digitalWrite() method to set the pushbuttons' initial states to high. This ensures that the pushbuttons are ready to receive input and respond appropriately during operation.

  8. Initialize the LCD: Start the LCD by initializing it with the appropriate parameters. This step prepares the LCD for displaying information and user interactions.

  9. Display welcome message: After a required delay period, print a welcoming message on the LCD display. This provides feedback to the user, indicating that the alarm clock is ready for use.

  10. Concatenate time and date: In the void loop() function, use conditional statements (if condition) to extract integer values representing the time and date from the DS1307RTC.h library. Concatenate these values into a string for displaying the current time and date on the LCD.

  11. Implement the void beep() method: This method sets the buzzer to emit a loud and low sound. Include a suitable delay to control the duration and rhythm of the sound. This ensures that the buzzer responds appropriately when the alarm is triggered.

Working:

Set up the circuit as described, and then upload the code to the Arduino Uno using the Arduino IDE. Adjust the screen's contrast using the potentiometer. To set an alarm, press the first pushbutton an odd number of times. Press it an even number of times to save the alarm. The second push-button increases the hour value by one unit, while the third push-button increases the minutes value by one unit. The buzzer sounds when the alarm goes off.


Arduino alarm clock
Arduino alarm clock

Check the Project working video here - Arduino Alarm Clock using DS1307 || Arduino Projects

Video By - Maninder Kumar


This project was made using hardware components but we can also make it using simulation platforms like Proteus, tinkercad com


Create more Arduino Projects using tinkercad com by referring to this article. - Top 50 TinkerCAD Projects.

For Tinkercad login assistance, visit tinkercad com



Written by-

Name- Nagashree R Nadig


See also-

Interfacing analog joystick with Arduino
Interfacing 4-Digit 7-Segment Display with Arduino


Follow us -


Follow #learnelectronicsindia to stay informed about the latest blogs, videos, courses, quizzes, and contests related to electronics and enhance your knowledge in this exciting field. Happy learning!



Want us to help you with the projects, write your inquiry here - Order Customized Projects


Check out our Free Arduino Projects Playlist - Arduino Projects

Check out our Free Raspberry Pi Projects Playlist - Raspberry Pi Projects

Check out our Free TinkerCAD Projects Playlist - TinkerCAD Projects

Check out our Free IoT Projects Playlist - IoT Projects

Check out our Free Home Automation Projects Playlist - Home Automation Projects

Check out our Free NodeMCu Projects Playlist - NodeMCu Projects




2,530 views3 comments

Related Posts

See All
bottom of page