• 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 » Make Sound with Arduino using Buzzer Circuit

Make Sound with Arduino using Buzzer Circuit

Last updated on 29 June 2026 by Admin-Lavi Leave a Comment

This project shows how to Make Sound with Arduino using Buzzer Circuit; also buzzer makes sound when we send signal from Arduino pin.

Here, we can use it for alarms, alerts, or simple tones; moreover, we use two versions here: one with individual components and another with a buzzer module.

Arduino Code:

int buzzer = 8;
void setup() {
pinMode(buzzer, OUTPUT);
}
void loop() {
digitalWrite(buzzer, HIGH);
delay(1000);
digitalWrite(buzzer, LOW);
delay(1000);
}

Code Explanation:

  • int buzzer 8 connect buzzer to pin 8.
  • pinMode(buzzer, OUTPUT) make pin 8 output.
  • digitalWrite(buzzer, HIGH) turn buzzer ON.
  • delay(1000) wait for 1 second.
  • digitalWrite(buzzer, LOW) turn buzzer OFF.
  • delay(1000) wait for 1 second.
  • Loop repeats to make buzzer beep continuously.

Parts List:

ComponentsQuantity
Resistor 220Ω1
Buzzer1
Buzzer Module1
Arduino UNO1
Sound with Arduino using Buzzer Circuit Diagram

The above circuit diagram uses a normal buzzer with a 220 Ω resistor; the circuit connects the positive pin of the buzzer to Arduino pin 8 and connects the negative pin to GND through the 220Ω resistor.

Also, this resistor limits current to protect buzzer and Arduino pin.

Sound with Arduino using Buzzer Module Circuit Diagram

In the above circuit diagram, we use a ready-made buzzer module, the module also has three pins: Signal (S), VCC (+) and GND (−).

Signal pin connects to Arduino pin 8, VCC connects to 5V of Arduino and then GND connects to Arduino GND.

Circuit Working:

First, Arduino sends HIGH signal (5V) to buzzer pin; when signal is HIGH, buzzer turns ON and makes sound and when signal is LOW, buzzer turns OFF and becomes silent.

Therefore, this ON and OFF control and creates beep or tone sound.

Formulas:

Below is the formula for Sound with Arduino using Buzzer Circuit:

Ohm s Law: V = I × R

Arduino output voltage is 5V

If buzzer uses around 20mA current.

Then resistor = V / I = 5 / 0.02 = 250 ohm (approx)

So, we used 220 ohm resistor for extra protection and with slightly lower sound.

How to Build:

To Make Sound with Arduino using Buzzer Circuit follow the below steps for connection:

  • First, assemble all the parts as shown in circuit diagram.
  • Next, pin 8 connect to output signal to buzzer, GND pin connect to common ground and then 5V pin connect to power supply for buzzer module version
  • Finally, resistor 220Ω connect between GND and buzzer in component version

Conclusion:

To include, this simple Make Sound with Arduino using Buzzer Circuit helps understand buzzer working with Arduino; also we can use it for alarms, countdowns or sound effects.

Additionally, it is one of the basic and fun Arduino beginner projects.

Filed Under: Alarm Circuits, Arduino Projects, Audio Circuits, Mini Projects

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: « Adjust LED Glow with Potentiometer Circuit
Next Post: Chirping Sound Buzzer Circuit »

Reader Interactions

Leave a Reply Cancel reply

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

Primary Sidebar




Categories

  • 555 Timer Projects (134)
  • Alarm Circuits (81)
  • Amplifier Circuits (94)
  • Arduino Projects (103)
  • Audio Circuits (189)
  • Automation Circuits (150)
  • Automobile Circuits (40)
  • Battery Charger Circuits (88)
  • DIY Projects (425)
  • Free Energy (12)
  • Heater and Temperature Controllers (32)
  • High Voltage (24)
  • Hobby Circuits (240)
  • Indicator Circuits (63)
  • Inverter Circuits (17)
  • IoT projects (12)
  • LDR Circuits (47)
  • LED and Lamps (201)
  • Meters and Testers (44)
  • Mini Projects (390)
  • Motor Controllers (25)
  • Oscillator Circuits (70)
  • Power Supply Circuits (244)
  • Radio Frequency (8)
  • Remote Control Circuits (12)
  • Renewable energy (20)
  • Security and Protection (128)
  • Sensors and Detectors (236)
  • Solar Circuits (31)
  • Timer Circuits (63)
  • Transistor Circuits (178)
  • Transmitter Circuit (19)
  • Tutorials (33)
  • Voltage Regulator (51)
  • Water Level Controller (10)

Recent Posts

  • Low Current Controlled Battery Charger Circuit using LM723 IC
  • 741 Op-Amp Treble Booster Circuit
  • Simple Diode and Transistor Based Audio Limiter Circuit
  • Simple 500mW Speaker Driver Circuit
  • Easy DIY LM386 Audio Amplifier Circuit

Recent Comments

  1. Admin-Lavi on High Voltage Fence Charger Circuit
  2. etere on High Voltage Fence Charger Circuit
  3. Admin-Lavi on High Voltage Fence Charger Circuit
  4. egidio grzinic on High Voltage Fence Charger Circuit
  5. Logic OR Gate Circuit using Transistors - Circuit Ideas for You on Automatic Street Light Circuit using LDR

Copyright © 2026 | New Circuit Ideas