• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Circuit Ideas for You

Get free circuit ideas online.

  • Home
  • Privacy Policy
  • About
Home » Sound Activated LED Circuit with Arduino

Sound Activated LED Circuit with Arduino

Last updated on 22 September 2025 by Admin-Lavi Leave a Comment

Make our Lights Dance with Sound!

This Sound Activated LED Circuit with Arduino turns every clap, snap or beat into a colorful light show.

It is a fun and easy project that brings sound and LEDs to life.

Perfect for beginners who want to see their music or sounds in action!

Circuit Coding:

int soundSensor = A0;
int ledPins[] = {2,3,4,5,6};
int sensorValue = 0;

void setup() {
for(int i=0; i<5; i++) {
pinMode(ledPins[i], OUTPUT);
}
pinMode(soundSensor, INPUT);
Serial.begin(9600);
}

void loop() {
sensorValue = analogRead(soundSensor);
Serial.println(sensorValue);
if(sensorValue > 400) {
for(int i=0; i<5; i++) {
digitalWrite(ledPins[i], HIGH);
}
} else {
for(int i=0; i<5; i++) {
digitalWrite(ledPins[i], LOW);
}
}
}

Coding Explanation:

  • Variable soundSensor store A0 pin.
  • Array ledPins store LED pins.
  • Setup function set LED pins output, sensor pin input.
  • Loop read analog value from sensor.
  • If value is more than 400 then all LEDs ON.
  • Else all LEDs are OFF.
  • Serial print show sensor values for testing.

Circuit Working:

Sound Activated LED Circuit Diagram with Arduino

Parts List:

ComponentQuantity
Resistors
220Ω 1/4 watt5
Semiconductors
Arduino UNO1
Sound Sensor Module1
LEDs any 5mm 20mA5

Sound sensor get power from Arduino 5V and GND.

Sensor detect sound and send signal to Arduino A0.

Arduino read signal and turn ON/OFF LEDs on pins D2 to D6.

Each LED need resistor from R1 To R5 to protect from too much current.

When sound is loud then more LEDs light up.

Circuit is simple with no button and no switch.

How to Build:

To build a Sound Activated LED Circuit with Arduino follow the below mentioned steps for connections:

  • Take all parts same as circuit diagram.
  • Sound sensor VCC go to Arduino 5V.
  • Sound sensor GND go to Arduino GND.
  • Sound sensor OUT go to Arduino A0.
  • LEDs connect to Arduino pins D2, D3, D4, D5, D6 with resistors R1 to R5.
  • Each LED anode go to Arduino pin.
  • Each LED cathode go to GND through resistor.

Conclusion:

Sound Activated LED Circuit with Arduino is simple project.

It shows sound control LEDs.

Same idea can be used for fan, light, motors.

Circuit is easy to make and is good for beginners.

References:

How to connect an ultrasonic sensor and a sound sensor on one breadboard

Filed Under: Arduino Projects, Sensors and Detectors

About Admin-Lavi

Lavi is a B.Tech electronics engineer with a passion for designing new electronic circuits. Do you have questions regarding the circuit diagrams presented on this blog? Feel free to comment and solve your queries with quick replies

Previous Post: « Whistle Controlled Light Circuit using Arduino

Reader Interactions

Leave a Reply Cancel reply

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

Primary Sidebar




Categories

  • Alarm Circuits (34)
  • Amplifier Circuits (67)
  • Arduino Projects (56)
  • Audio Circuits (97)
  • Automobile Circuits (19)
  • Battery Charger Circuits (48)
  • Free Energy (13)
  • Heater and Temperature Controllers (10)
  • High Voltage (1)
  • Indicator Circuits (40)
  • Inverter Circuits (13)
  • LDR Circuits (16)
  • LED and Lamps (116)
  • Meters and Testers (28)
  • Motor Controllers (18)
  • Oscillator Circuits (34)
  • Power Supply Circuits (92)
  • Remote Control Circuits (7)
  • Security and Protection (26)
  • Sensors and Detectors (97)
  • Solar Circuits (17)
  • Timer Circuits (30)
  • Transistor Circuits (57)
  • Transmitter Circuit (13)
  • Tutorials (5)
  • Water Level Controller (4)

Recent Posts

  • Sound Activated LED Circuit with Arduino
  • Whistle Controlled Light Circuit using Arduino
  • Tilt Switch Interfacing Circuit with Arduino Uno
  • Interfacing Hall Effect Magnetic Sensor Circuit with Arduino
  • Hall Effect Sensor Circuit with IC LM393

Recent Comments

  1. Admin-Lavi on Constant Voltage, Constant Current Battery Charger Circuit
  2. Bill on Constant Voltage, Constant Current Battery Charger Circuit
  3. Admin-Lavi on Long Range FM Transmitter Circuit (2km)
  4. Sina on Long Range FM Transmitter Circuit (2km)
  5. Admin-Lavi on Long Range FM Transmitter Circuit (2km)

Copyright © 2025 | New Circuit Ideas