How to use Buzzer with Arduino

How to use Buzzer with Arduino

Summary

Are you looking to add sound to your Arduino project? A buzzer is a simple and cost-effective solution. In this blog, we will cover what a buzzer is, how it works with Arduino, and the components required to interface it. We will also provide a step-by-step guide on how to use the buzzer with your Arduino board. Whether you're a beginner or experienced with Arduino, this blog will help you add sound to your project.

What is a Buzzer in Arduino?

An Arduino Buzzer is basically a beeper. The Arduino buzzer is a device that produces sound when an electric current is passed through it. The buzzer Arduino can be directly connected to the Arduino and produce different tones by giving different frequency electric pulses to the buzzer. The Arduino buzzers are most commonly used as beepers in any system, Alarm devices, timers, security systems and to produce sound on confirmation of user input in many systems. The buzzers are of different types such as Mechanical buzzers, Electromechanical buzzers and Piezoelectric buzzers.

The piezoelectric buzzer is most commonly used with the Arduino. As it is lightweight, simple in construction, typically a low-cost product that can generate different sound tones of different frequencies and does not require a separate oscillating circuit.

In this blog, we will produce different sound tones using a buzzer by applying different frequency electric pulses.

read more: Interfacing GPS Module with Arduino

How does the Arduino Buzzer work?

The Positive pin (+ve) of the Arduino buzzer has to be connected to the VCC of Arduino and the Negative pin (-ve) has to be connected to the GND pin of the Arduino.

 

 

Interface Buzzer With Arduino

 

When the Positive pin is connected to the 5 Volts pin of the Arduino directly, the buzzer produces a sound of constant frequency.

When a square wave of a certain frequency (and 50% duty cycle) is applied on the Positive (+ve) pin of the buzzer Arduino generates tones. The different frequencies generate different tones. By changing the frequency on the positive pins of the Arduino buzzer, we can create a melody of the song.

Read our blog Arduino VS NodeMCU, provides a detailed comparison between Arduino Uno and NodeMCU microcontrollers.

How to use the Arduino buzzer?

If your buzzer has a sticker on top of it, pull the sticker off. Connect the short pin of the buzzer to the Arduino's ground pin (GND) and the other end to digital pin 9. Using the Arduino, you can make sounds with a buzzer by using different frequency electrical pulses. You have to tell the Arduino on which pin the buzzer is connected, what should be the frequency (in Hertz, Hz) of the electric pulse has to be applied to the buzzer, and for how much time you want it to keep making the tone. So for doing this, we will use the Arduino buzzer tone generation command:

tone(9, 1200, 500);    // tone on pin 9 at 1200 Hz for 1/2 second

The above-mentioned command is the function used to generate an electric signal of a particular frequency and for a particular period of time on a particular pin. So we are using pin number 9 of Arduino to perform such an operation here. When you call the tone() function, you have to pass this function with 3 arguments. I.e, Pin number, frequency of the signal you want to generate, and the time in milliseconds. As per the above-mentioned command, 9 stands for the pin number of the pin you want to use, (Note that the pin you use for this operation should be a PWM pin). The 1200 stands for the frequency you want to generate, and the 500 stands for time in milliseconds, this is the time period that the Arduino generates the frequency for the buzzer.

Also Read - IR Sensor Interfacing with Arduino

Once, the square wave is generated as per what we declared in the tone(); function, to stop the frequency generation noTone(); function has to be used. The syntax for the noTone(); function is mentioned below. If you do not call the noTone(); function, it will keep making a tone until you tell it to stop by calling noTone(pin) or by calling tone() with a different frequency. 

noTone(9);   // Stops the generation of a square wave triggered by tone(). 

For stopping the frequency generation, generated by the tone(); function, the above function has to be called. In the noTone(); an argument with the pin number has to passed, which says the Arduino that to stop the frequency generation on a particular pin. (Note: The same pin has to be used, which was used for the tone generation). So let’s see the complete code and the connection for playing music on the buzzer Arduino.

read more: Temperature Sensor Interfacing with Arduino

Component required to interface buzzer with Arduino:

  1. Arduino UNO
  2. Buzzer
  3. Breadboard
  4. 100 ohms Resistor
  5. Connecting jumper wires

Steps to use Buzzer with Arduino

Step 1: First, grab all the components listed above.

 

Steps to use Buzzer with Arduino

Step 2: Make connections as per the circuit diagram given below:

 

circuit diagram for buzzer Arduino

 

Pin number 9 of Arduino

One of the pins of 100 ohms Resistor 

GND pin of Arduino 

Negative pin of the buzzer (Shorter pin)

Empty 100 ohms resistor pin 

Positive pin of the buzzer

 

  • Connect the Arduino to the Computer using a USB cable.
  • Open, Arduino IDE and select the correct board and port.
  • Next, In the top left corner, go to file >> Examples >> 02. Digital >> toneMelody.
  • Once the code is opened, upload the code to the Arduino and the melody music sound will be played using the buzzer.

The below-attached code plays simple jingle-bell music:


            /*
            * Created by ArduinoGetStarted.com
            *
            * This example code is in the public domain
            *
            * Tutorial page:
            https://arduinogetstarted.com/tutorials/arduino-piezo-buzzer
            */
            #include "pitches.h"
            // notes in the melody:int melody[] = {
            NOTE_E5, NOTE_E5, NOTE_E5,
            NOTE_E5, NOTE_E5, NOTE_E5,
            NOTE_E5, NOTE_G5, NOTE_C5, NOTE_D5,
            NOTE_E5,
            NOTE_F5, NOTE_F5, NOTE_F5, NOTE_F5,
            NOTE_F5, NOTE_E5, NOTE_E5, NOTE_E5, NOTE_E5,
            NOTE_E5, NOTE_D5, NOTE_D5, NOTE_E5,
            NOTE_D5, NOTE_G5};
            // note durations: 4 = quarter note, 8 = eighth note, etc,
            also called tempo:int noteDurations[] = {
            8, 8, 4,
            8, 8, 4,
            8, 8, 8, 8,
            2,
            8, 8, 8, 8,
            8, 8, 8, 16, 16,
            8, 8, 8, 8,
            4, 4};
            void setup() {
            // iterate over the notes of the melody:
            int size = sizeof(noteDurations) / sizeof(int);
            
            for (int thisNote = 0; thisNote < size; thisNote++) {
            
            // to calculate the note duration, take one second divided by the
            note type.
            //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc.
            int noteDuration = 1000 / noteDurations[thisNote];
            tone(8, melody[thisNote], noteDuration);
            
            // to distinguish the notes, set a minimum time between them.
            // the note's duration + 30% seems to work well:
            int pauseBetweenNotes = noteDuration * 1.30;
            delay(pauseBetweenNotes);
            // stop the tone playing:
            noTone(8);
            }}
            void loop() {
            // no need to repeat the melody.}

Conclusion:

Buzzers may seem like a simple component, but they have a multitude of uses in various applications. Understanding how buzzer Arduino work, how to use them, and how to interface them with an Arduino can be incredibly useful for electronics enthusiasts and hobbyists alike. With the right components and a few simple steps, you can create all kinds of sounds and alarms with ease. So why not try incorporating a buzzer into your next Arduino project and see where your creativity takes you? Start buzzing with excitement and take your electronics skills to the next level!

If you appreciate our work don't forget to share this post and leave your opinion in the comment box.

Please do check out other blog posts about Arduino Interfacing ACS712 with Arduino , Arduino Interfacing with Ultrasonic Sensor , LED Interfacing with Arduino , Interfacing GSM Module with Arduino , Interfacing MAX30100 Pulse Oximeter with Arduino , IR Sensor Interfacing with Arduino  and  How to connect ZMPT101B to Arduino  

 

Make sure you check out our wide range of products and collections (we offer some exciting deals!)

Components and Supplies

You may also like to read

  • What is a Bluetooth beacon?

    What is a Bluetooth beacon?

    - Robocraze -

    Discovering the power of Bluetooth beacons unveils a world of possibilities in the realm of connectivity. In our latest blog,...

    What is a Bluetooth beacon?

    - Robocraze -

    Discovering the power of Bluetooth beacons unveils a world of...

  • What is a t nut

    What is a t nut

    - Robocraze -

    Ever wondered what exactly a T-nut is and how it can revolutionize your projects? Our latest blog delves deep into...

    What is a t nut

    - Robocraze -

    Ever wondered what exactly a T-nut is and how it...

  • What is outdoor positioning system

    What is outdoor positioning system

    - Robocraze -

    Discover the magic behind Outdoor Positioning Systems (OPS) in our latest blog. Delve into the basics with an insightful Introduction,...

    What is outdoor positioning system

    - Robocraze -

    Discover the magic behind Outdoor Positioning Systems (OPS) in our...

  • What is data visualization in IoT

    What is data visualization in IoT

    - Robocraze -

    Dive into the dynamic realm of IoT with our latest blog! We kickstart with an insightful Introduction, delving into the...

    What is data visualization in IoT

    - Robocraze -

    Dive into the dynamic realm of IoT with our latest...

Frequently Asked Questions

1. How do I make my Arduino beep?

The buzzer can be beeped using a digitalWrite function. By giving the pin number and the state to which the Buzzer is connected on the Arduino.

read more: How 433MHz RF Module Works & Interfacing With Arduino

2. What is Active and Passive buzzers:

Active buzzer: An active buzzer has a built-in oscillating source, so it will make sounds when electrified. Can turn it on or off to make various sounds. Only requires an external DC voltage to make it sound (batteries or USB from Arduino).

Passive buzzer: The passive buzzer is an electromagnetic speaker used to generate sound signals of different frequencies. a passive buzzer requires a signal source, which will set the sound signal parameters. An Arduino board can be such a source.

3. Is buzzer a sensor?

A buzzer is generally not classified as a type of sensor. Instead, it serves as an audible alerting mechanism that operates through mechanical, electromechanical, or piezoelectric means. The buzzer may be linked to either digital or analog outputs and produces a tone when the output level is high. Although the buzzer can convert audio signals into sound signals, it does not possess the ability to sense or quantify any physical quantity in the way that sensors are designed to do.

read more:  Which Arduino Board to Buy

Back to blog

Leave a comment

Please note, comments need to be approved before they are published.

Components and Supplies

You may also like to read

  • What is a Bluetooth beacon?

    What is a Bluetooth beacon?

    - Robocraze -

    Discovering the power of Bluetooth beacons unveils a world of possibilities in the realm of connectivity. In our latest blog,...

    What is a Bluetooth beacon?

    - Robocraze -

    Discovering the power of Bluetooth beacons unveils a world of...

  • What is a t nut

    What is a t nut

    - Robocraze -

    Ever wondered what exactly a T-nut is and how it can revolutionize your projects? Our latest blog delves deep into...

    What is a t nut

    - Robocraze -

    Ever wondered what exactly a T-nut is and how it...

  • What is outdoor positioning system

    What is outdoor positioning system

    - Robocraze -

    Discover the magic behind Outdoor Positioning Systems (OPS) in our latest blog. Delve into the basics with an insightful Introduction,...

    What is outdoor positioning system

    - Robocraze -

    Discover the magic behind Outdoor Positioning Systems (OPS) in our...

  • What is data visualization in IoT

    What is data visualization in IoT

    - Robocraze -

    Dive into the dynamic realm of IoT with our latest blog! We kickstart with an insightful Introduction, delving into the...

    What is data visualization in IoT

    - Robocraze -

    Dive into the dynamic realm of IoT with our latest...