• 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 30 October 2025 by Admin-Lavi Leave a Comment

This project shows how to Make Sound with Arduino using Buzzer Circuit.

Buzzer makes sound when we send signal from Arduino pin.

We can use it for alarms, alerts or simple tones.

Two versions are used here one with components and one with buzzer module.

Arduino Coding:

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:

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

In above circuit diagram normal buzzer is used with a 220 ohm resistor.

Positive pin of buzzer connects to Arduino pin 8.

Negative pin connects to GND through 220 ohm resistor.

This resistor limits current to protect buzzer and Arduino pin.

Sound with Arduino using Buzzer Module Circuit Diagram

In above circuit diagram ready made buzzer module is used.

The module has three pins Signal (S), VCC (+) and GND (-).

Signal pin connects to Arduino pin 8.

VCC connects to 5V of Arduino.

GND connects to Arduino GND.

Circuit Working:

Arduino sends HIGH signal (5V) to buzzer pin.

When signal is HIGH, buzzer turns ON and makes sound.

When signal is LOW, buzzer turns OFF and becomes silent.

This ON and OFF control 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)

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:

  • Assemble all the parts as shown in circuit diagram.
  • Pin 8 connect to output signal to buzzer
  • GND pin connect to common ground.
  • 5V pin connect to power supply for buzzer module version
  • Resistor 220Ω connect between GND and buzzer in component version

Conclusion:

This simple Make Sound with Arduino using Buzzer Circuit helps understand buzzer working with Arduino.

We can use it for alarms, countdowns or sound effects.

It is one of the basic and fun Arduino beginner projects.

References:

Generating audio at different frequencies using a buzzer and the General Wave Equation

Filed Under: Arduino Projects, Audio Circuits

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

  • Alarm Circuits (35)
  • Amplifier Circuits (67)
  • Arduino Projects (63)
  • Audio Circuits (101)
  • Automobile Circuits (19)
  • Battery Charger Circuits (54)
  • Free Energy (13)
  • Heater and Temperature Controllers (10)
  • High Voltage (1)
  • Indicator Circuits (43)
  • Inverter Circuits (16)
  • LDR Circuits (19)
  • LED and Lamps (127)
  • Meters and Testers (30)
  • Motor Controllers (18)
  • Oscillator Circuits (35)
  • Power Supply Circuits (94)
  • Remote Control Circuits (7)
  • Security and Protection (26)
  • Sensors and Detectors (99)
  • Solar Circuits (23)
  • Timer Circuits (32)
  • Transistor Circuits (65)
  • Transmitter Circuit (14)
  • Tutorials (8)
  • Water Level Controller (4)

Recent Posts

  • Chirping Sound Buzzer Circuit
  • Make Sound with Arduino using Buzzer Circuit
  • Adjust LED Glow with Potentiometer Circuit
  • Arduino Based Control LED Light Circuit with Potentiometer
  • Push Button LED Circuit using Arduino

Recent Comments

  1. Henrik Arboe Jensen on Adjustable Voltage, Current Power Supply Circuit using Transistor 2N3055
  2. Admin-Lavi on FM Transmitter Circuit (100 meters range)
  3. DEVINDER SINGH on FM Transmitter Circuit (100 meters range)
  4. Admin-Lavi on Constant Voltage, Constant Current Battery Charger Circuit
  5. Bill on Constant Voltage, Constant Current Battery Charger Circuit

Copyright © 2025 | New Circuit Ideas