

A buzzer is an audio signaling device that produces sound when an electric current passes through it. It is widely used in various electronic applications to provide audible alerts or notifications. Buzzers are commonly found in alarms, timers, and notification systems, making them an essential component in both consumer and industrial electronics. They are available in two main types: active buzzers, which generate sound when powered, and passive buzzers, which require an external signal to produce sound.








Below are the general technical specifications for a typical buzzer. Note that specific values may vary depending on the manufacturer and model.
+ and -), while others are not.The pin configuration of a buzzer is straightforward, as it typically has two pins. Below is a table describing the pins:
| Pin Name | Description |
|---|---|
| Positive (+) | Connect to the positive terminal of the power supply or signal source. |
| Negative (-) | Connect to the ground (GND) of the circuit. |
For non-polarized buzzers, the pins can be connected in either orientation.
Below is an example of how to connect and control a passive buzzer using an Arduino UNO:
// Example code to control a passive buzzer with Arduino UNO
// The buzzer will produce a tone at 1000 Hz for 1 second, then stop for 1 second.
#define BUZZER_PIN 9 // Define the pin connected to the buzzer
void setup() {
pinMode(BUZZER_PIN, OUTPUT); // Set the buzzer pin as an output
}
void loop() {
tone(BUZZER_PIN, 1000); // Generate a 1000 Hz tone on the buzzer
delay(1000); // Wait for 1 second
noTone(BUZZER_PIN); // Stop the tone
delay(1000); // Wait for 1 second
}
No Sound from the Buzzer:
Buzzer Produces Weak or Distorted Sound:
Buzzer Overheats:
Q: Can I use a passive buzzer without a microcontroller?
A: Yes, you can use a passive buzzer with an external oscillator circuit or a signal generator to produce sound.
Q: How do I differentiate between an active and a passive buzzer?
A: Active buzzers typically have a built-in oscillator and produce sound when powered with DC voltage. Passive buzzers require an external signal and are usually smaller in size.
Q: Can I control the volume of the buzzer?
A: The volume is generally fixed, but you can reduce it by lowering the supply voltage or adding a resistor in series with the buzzer.
Q: What is the typical lifespan of a buzzer?
A: Most buzzers have a lifespan of tens of thousands of hours under normal operating conditions.