

A buzzer is an audio signaling device that produces sound when an electrical signal is applied. It is widely used in various applications such as alarms, timers, notifications, and user interfaces to provide audible feedback. Buzzers are available in two main types: active and passive. Active buzzers generate sound when powered, while passive buzzers require an external signal to produce sound.
Common applications of buzzers include:








Below are the general technical specifications for a typical buzzer. Note that specific values may vary depending on the model and manufacturer.
| Parameter | Specification |
|---|---|
| Operating Voltage | 3V to 12V (commonly 5V) |
| Current Consumption | 10mA to 50mA |
| Sound Frequency | 2 kHz to 4 kHz |
| Sound Pressure Level | 85 dB to 100 dB (at 10 cm distance) |
| Operating Temperature | -20°C to +70°C |
| Dimensions | Varies (e.g., 12mm diameter, 8mm height) |
Buzzers typically have two pins: positive (+) and negative (-). The table below describes the pin configuration:
| Pin | Description |
|---|---|
| Positive (+) | Connect to the positive terminal of the power supply or signal source. |
| Negative (-) | Connect to the ground (GND) of the circuit. |
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 1 kHz for 1 second, then stop for 1 second.
int buzzerPin = 9; // Pin connected to the buzzer
void setup() {
pinMode(buzzerPin, OUTPUT); // Set the buzzer pin as an output
}
void loop() {
tone(buzzerPin, 1000); // Generate a 1 kHz tone on the buzzer
delay(1000); // Wait for 1 second
noTone(buzzerPin); // Stop the tone
delay(1000); // Wait for 1 second
}
No Sound from the Buzzer:
Buzzer Produces Weak or Distorted Sound:
Buzzer Overheats:
Buzzer Produces Continuous Sound (Passive Buzzer):
Q: Can I use a passive buzzer without a microcontroller?
A: Yes, but you will need an external oscillator circuit to generate the required signal.
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 connect a buzzer directly to a battery?
A: Active buzzers can be connected directly to a battery if the voltage matches their operating range. Passive buzzers require an oscillating signal and cannot be powered directly by a battery.
Q: What is the typical lifespan of a buzzer?
A: The lifespan of a buzzer depends on its usage and operating conditions but is typically rated for tens of thousands of hours.