My idea is based on my final project which is a smart reminder box for students and worker to keep healthy habits like staying hydrated, taking breaks, and stretch.
Idea: Build and program the LEDs Color reminders circuit of the box to do the assignment. When the worker or student sits on their desk, the ultrasonic sensor detects them and triggers the LEDs to start operating.
Input component: Ultra Sonic Sensor "HC - SR04
Output (action) component: 3 LEDs (red -yellow - green)
Source of Inspiration: My Final Project Idea
Find my reference in this link.
Software:
Components
Tools:
Design On Tinker Cad
Wiring:
Built a circuit powered on tinkercad.
Using a breadboard, I put 3 LEDs and connected a 330 OHM resistor in series with each one of them.
The positive side is connected to digital pins on Arduino.
Negative sides connected to the Arduino common ground.
Made Ultrasonic sensor wiring using the video in the Maker Diploma materials. Reference Link
Components used:
3 LEDs (Yellow, Green, and Red).
Three 330-ohm resistors (to protect the LED).
Ultrasonic Sensor - HC-SR04
Connecting Wires
Arduino UNO
Power source: : 5V from Arduino
Output:
LED lights up.
Motor operates.
How it works:
Switch completes the circuit.
Current flows through the LED (with resistor) and motor.
Code Blocks & Text
The ultrasonic sensor detects an object's distance. If the distance is less than 30 cm, the LEDs turn on sequentially (pin 8 → pin 9 → pin 10), each staying on for 1 second before turning off. If no object is detected, all LEDs remain off.
Input: Ultrasonic sensor reads distance.
Logic: If distance < 30 cm → cycle through LEDs with delays.
Output: LEDs light up one by one in a loop, signaling the reminder.
Reference Link to Tinkercad file: Link
The Circuit was successfully simulated on TinkerCad
Circuit didn't work
I didnt notice that the long wire line in the breadboard is separated from the middle. (Rookie mistake 😂)
I discovered this by troubleshooting and revising current flow.
Title of Media
I learned how to program the Arduino to give me the LEDs function I will need.
It even gave me a n idea of an extra feature. (The Ultrasonic)