Imagine a world where clapping controls your lights instead of manually switching them ON/OFF. In this fun Arduino meme project, we compare "Manual Effort vs. Smart Automation" using a clap-controlled light system. 🎬
This project is beginner-friendly, perfect for DIY electronics lovers, and uses an Arduino Uno/Nano, a sound sensor, and an LED or relay for real light control. The best part? No manual switches—just clap, and the magic happens! 😎
🚀 Why Should You Build This?
✅ Fun & Entertaining – Meme-style comparison video content.
✅ Beginner-Friendly – No complex coding or circuits.
✅ Automation Ready – Use a relay module to control real bulbs.
✅ Viral Project Idea – Perfect for YouTube & social media content!
🛠 Parts Used:
- Arduino UNO – Microcontroller board to process data.
- DHT11 Temperature and Humidity Sensor – Measures the ambient temperature and humidity.
- I2C LCD Display (16x2) – Displays messages and sensor readings.
- Breadboard – For prototyping and connecting components.
- Connecting Wires – For making electrical connections.
- Power Supply/USB Cable – To power the Arduino UNO.
🛠️ Parts Required for the Arduino Clap Control Light
To build this project, you’ll need:
- Arduino UNO – Microcontroller board to process data.
- Sound Sensor Module (KY-038 or LM393 – Detects claps 👏
- 2X channel Relay Module – Controls light 💡
- LED lights or Strip – For lights.
- Connecting Wires – For making electrical connections.
- Power Supply/USB Cable – To power the Arduino UNO.
📡 Circuit Diagram: How to Connect Everything?
🔌 Wiring Instructions:
-
Sound Sensor → Arduino
- VCC → 5V
- GND → GND
- A0 (Analog Output) → A0 (Arduino)
-
LED/Relay → Arduino
- Positive (Anode) → Digital Pin 9
- Negative (Cathode) → GND
📍 If using a relay, connect a real AC bulb instead of an LED.
Video Link: - Click Here For Video
How To Make Clap to Light Up LED light Using Sound Sensor DIY Project by WTC Zone simple Circuit: -
Arduino IDE Program
Code for Clap to Light Up LED light Using Sound Sensor DIY Project by WTC Zone
// Define Pinsconst int soundSensorPin = A0; // Sound sensor inputconst int ledPin = 9; // LED or relay outputconst int threshold = 500; // Adjust based on room noise level
bool lightState = false; // Track light state
void setup() { pinMode(soundSensorPin, INPUT); pinMode(ledPin, OUTPUT); Serial.begin(9600); // Debugging}
void loop() { int soundValue = analogRead(soundSensorPin); // Read sensor value Serial.println(soundValue); // Debugging
if (soundValue > threshold) { // Detect clap lightState = !lightState; // Toggle light state digitalWrite(ledPin, lightState ? HIGH : LOW); delay(500); // Prevent multiple triggers from one clap }}
Share, Support, and Subscribe!!! 1. PRO KAM EXPLAINED 2. Knowledge KAM 3. PRO KAM Follow us on 1. Facebook 2. Instagram 3. Pinterest 4. Blogspot 5 Twitter If you have any other ideas to make me design, you can describe them in the comment section and if I can, I will make a designing video on it. So I am waiting #prokam #wtc #Arduino #ideas #projects #diy #how #to #ArduinoProjects #UltrasonicSensor #HeightMeasurement #TechDIY #WeTechCreators #wtczo
0 Comments