Introduction
Most alarm clocks are boring.
You either get a simple buzzer sound or some generic digital tone that your brain learns to ignore after a few days. I wanted something that actually had personality.
After seeing a car-inspired alarm clock online, I decided to build something that felt more relatable and visually interesting — an Indian truck-themed alarm clock with realistic startup sounds, blinking lights, and a full engine idle sequence.
The idea was simple: Create an alarm clock that behaves like a miniature truck every morning.
The Story Behind the Build
Indian trucks have a completely different vibe compared to sports cars.
They’re colorful, loud, dramatic, and somehow full of character. From painted bumpers to decorative lights and massive horns, they already feel mechanical and animated. So instead of copying the original Dodge-style concept directly, I redesigned the idea around a truck platform.
The goal was not just to display time.
I wanted the clock to feel alive.
That’s why I added:
- Engine startup sounds
- Idle loops
- Truck horn audio
- Flashing LEDs
- Automatic shutdown sequence
The result feels more like a tiny truck simulator than an alarm clock.
Features
Main Features
- Dual OLED displays for hours and minutes
- Real-time clock using DS3231 RTC
- Realistic truck startup audio
- Continuous engine idle + horn sequence
- Automatic engine shutdown after 5 minutes
- Blinking LEDs synchronized with alarm state
- Fully Arduino controlled
- Custom 3D printed truck enclosure
3D Printed Parts

The truck body was custom designed and then 3D printed using JUSTWAY.
The reason I chose professional printing instead of printing locally was because:
- Better surface finish
- Cleaner detailing
- More accurate fitment
- Less post-processing
Since the enclosure has multiple sections for displays, LEDs, and speaker mounting, dimensional accuracy mattered a lot.

Working Principle
The system uses the DS3231 RTC module to continuously track the current time.
When the preset alarm time is reached:
- The DFPlayer Mini plays a truck startup sound
- LEDs begin blinking
- Engine idle and horn sounds loop continuously
- The alarm runs for 5 minutes
- A truck shutdown sound plays
- Everything turns off automatically
Meanwhile, the OLED displays continuously show:
- Left OLED → Hours
- Right OLED → Minutes
This split-display design makes the clock look much more futuristic and dashboard-like.
Circuit Explanation

The Arduino UNO controls all modules:
- RTC provides accurate time
- DFPlayer handles audio playback
- OLEDs display the time
- LEDs simulate truck lights
The BUSY pin from the DFPlayer is used to detect when an audio track finishes playing. This allows the Arduino to automatically start the next sound file without delays or manual timing.
That small detail made the startup and looping sequence feel much smoother.
[Insert wiring diagram here]
Design Process
The enclosure design took multiple iterations.
At first, I tried making the truck shape too realistic, but it became difficult to fit:
- OLED displays
- Speaker
- Wiring
- Arduino board
So I simplified the structure while keeping the recognizable Indian truck styling.
The OLED displays were separated intentionally so the clock resembles a vehicle dashboard.
Another challenge was speaker placement because enclosed audio can sound muffled inside 3D printed bodies. I had to experiment with vent placement to improve sound clarity.
Audio Sequence Logic
The audio system works in stages.
Startup Phase
The truck ignition sound plays first.
df.play(1);
Looping Phase
After startup completes, the code continuously cycles through:
- Engine idle
- Horn sounds
Shutdown Phase
After five minutes:
df.play(3);
The truck shutdown sound plays and the LEDs turn off.
OLED Display Logic
Two separate OLED displays are used:
- One for hours
- One for minutes
This...
Read more »
Rohan Barnwal