• 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 » Simple Sound Sensor Circuit with Arduino

Simple Sound Sensor Circuit with Arduino

Last updated on 25 November 2025 by Admin-Lavi Leave a Comment

This project show how to use sound sensor with Arduino.

Sound sensor detect clap or loud voice.

When sound come, Arduino turn ON LED and buzzer.

This project for Simple Sound Sensor Circuit with Arduino help beginner understand sensor working.

Arduino Coding:

int sound = 7;
int led = 13;
int buzzer = 8;
int value = 0;

void setup() {
pinMode(sound, INPUT);
pinMode(led, OUTPUT);
pinMode(buzzer, OUTPUT);
}

void loop() {
value = digitalRead(sound);
if(value == HIGH){
digitalWrite(led, HIGH);
digitalWrite(buzzer, HIGH);
delay(300);
} else {
digitalWrite(led, LOW);
digitalWrite(buzzer, LOW);
}
}

Code Explanation:

  • We create variable sound for sound sensor pin.
  • LED ON pin 13.
  • Buzzer ON pin 8.
  • In setup we set pins input and output.
  • In loop we read sensor value.
  • If sound detected value become HIGH.
  • Then LED is ON and buzzer is also ON.
  • If no sound then both are OFF.

Circuit Working:

Simple Sound Sensor Circuit Diagram with Arduino

Parts List:

ItemQuantity
Resistors 220Ω 1/4 watt1
Arduino UNO1
Sound Sensor Module1
LEDs 5mm any1
Buzzer1

Sound sensor gives digital output.

When loud sound hit microphone module then output pin become HIGH.

Arduino read HIGH signal.

Arduino send voltage to LED and buzzer.

LED glow and buzzer makes sound.

When sound stop sensor output is LOW and Arduino turn OFF LED and buzzer.

Formula with Calculation:

Below is the formula for LED current:

LED current is approx 15 to 20 mA.

We used 220 ohm resistor:

Current = Voltage / Resistance

Voltage around 5V minus LED drop 2V = 3V

Current = 3 / 220 = 0.013A

This is safe for our LED.

How to Build:

To build a Simple Sound Sensor Circuit with Arduino we need to follow the below steps:

  • Assemble all the parts as shown in circuit diagram.
  • Sound sensor VCC pin connect to Arduino 5V.
  • Sound sensor GND pin connect to Arduino GND.
  • Sound sensor OUT pin connect to Arduino pin 7.
  • LED positive leg connect to one side of 220 ohm resistor.
  • Other side of resistor connect to Arduino pin 13.
  • LED negative leg connect to GND.
  • Buzzer positive wire connect to Arduino pin 8.
  • Buzzer negative wire connect to GND.
  • All grounds must join together.

Conclusion:

This Simple Sound Sensor Circuit with Arduino is very easy and best for beginners.

We can learn how sound sensor work with Arduino.

It show how sensor signal control LED and buzzer.

We can improve project by adding relay, motor or other automation.

References:

I need a quality sound sensor

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: « Arduino and Joystick LED Controller Circuit
Next Post: Laser Security Alarm Circuit using LDR and BC547 Transistors »

Reader Interactions

Leave a Reply Cancel reply

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

Primary Sidebar




Categories

  • Alarm Circuits (45)
  • Amplifier Circuits (67)
  • Arduino Projects (99)
  • Audio Circuits (114)
  • Automobile Circuits (19)
  • Battery Charger Circuits (65)
  • Free Energy (13)
  • Heater and Temperature Controllers (13)
  • High Voltage (1)
  • Indicator Circuits (45)
  • Inverter Circuits (20)
  • IoT projects (1)
  • LDR Circuits (26)
  • LED and Lamps (148)
  • Meters and Testers (30)
  • Motor Controllers (22)
  • Oscillator Circuits (39)
  • Power Supply Circuits (104)
  • Remote Control Circuits (10)
  • Security and Protection (29)
  • Sensors and Detectors (126)
  • Solar Circuits (29)
  • Timer Circuits (41)
  • Transistor Circuits (87)
  • Transmitter Circuit (17)
  • Tutorials (8)
  • Water Level Controller (6)

Recent Posts

  • 12V Battery Low Voltage Alarm Circuit
  • Low Voltage Alert Circuit for 9V Battery
  • Digital Code Lock Circuit using IC 4017
  • Darkness Activated LED Circuit
  • Fan Start 10 Second Delay Timer Circuit

Recent Comments

  1. TDHofstetter on DIY Variable Power Supply Circuit using Arduino
  2. feathbuff on Simple Micro Ampere Meter Circuit
  3. Admin-Lavi on Simple School Project Multimeter Circuit
  4. choke on Simple School Project Multimeter Circuit
  5. Admin-Lavi on Analog to Digital Converter Circuit using IC 555

Copyright © 2026 | New Circuit Ideas