Build A Wake Up Alarm Clock Using Arduino

Story

After designing the “Clock Set Date Time” and hearing the suggestion of ArduPic , I thought it would be a good idea and also useful, add a “wake-up alarm.”

A small change to the code and adding a few components: Here’s “the Alarm Clock“.

Compared to the previous project, I added a buzzer Piezzo, a diode LED, a resistor of 220 ohms, a button and as said before, I listened to the suggestion of “ArduPic” and I removed the resistance to “pull down.”

alarmclock copia NumDADgiNd

Arduino Code

To remove the “pull down” resistances I had to make a change to the code.

Use the pullup resistors of Arduino, and reverse the code logic conditions.

pinMode(P1,INPUT_PULLUP);

pinMode(P2,INPUT_PULLUP);

pinMode(P3,INPUT_PULLUP);

pinMode(P4,INPUT_PULLUP);

if(digitalRead(P1)==LOW)

{

menu=menu+1;

Alarm Code

The activation and deactivation of the alarm clock is controlled by the “P4” button, line 444 “void Alarm()”.

To enter the alarm settings, you must use the “P3” “P2” buttons together, line 81 “if((digitalRead(P2)== LOW)&&(digital Read(P3)== LOW))”.

When the alarm is not set, the bottom of the display will show “Alarm Off” when the alarm is active, it shows the time that has been set.

At the scheduled time, the display flashes, the LED lights up, and the buzzer sounds two tones.

To turn off the alarm, you have to act on the P4 button, or, after a minute, it turns off alone

I am attaching the electric schematic and the layout Fritzing

Schematics

alarm_clock_5KZ82y7hnm

Read More:    Build A Wake Up Alarm Clock Using Arduino

 


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top