

The Buzzer 12mm is a compact audio signaling device designed to produce sound when an electrical signal is applied. It is widely used in various applications such as alarms, notifications, timers, and user feedback systems. Its small size (12mm diameter) makes it ideal for compact electronic designs, while its ease of use ensures compatibility with a wide range of circuits.








The following table outlines the key technical details of the Buzzer 12mm:
| Parameter | Value |
|---|---|
| Operating Voltage | 3V to 12V DC |
| Rated Voltage | 5V DC |
| Current Consumption | ≤ 30mA |
| Sound Output | 85 dB at 10cm (typical) |
| Frequency Range | 2 kHz to 4 kHz |
| Dimensions | 12mm diameter, 8mm height |
| Operating Temperature | -20°C to +60°C |
| Type | Active (self-driven) |
The Buzzer 12mm typically has two pins for electrical connections. 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 the Buzzer 12mm using an Arduino UNO:
// Buzzer 12mm Example Code
// This code toggles the buzzer on and off at 1-second intervals.
const int buzzerPin = 8; // Define the pin connected to the buzzer
void setup() {
pinMode(buzzerPin, OUTPUT); // Set the buzzer pin as an output
}
void loop() {
digitalWrite(buzzerPin, HIGH); // Turn the buzzer on
delay(1000); // Wait for 1 second
digitalWrite(buzzerPin, LOW); // Turn the buzzer off
delay(1000); // Wait for 1 second
}
No Sound from the Buzzer
Low Sound Output
Buzzer Produces Continuous Sound
Q: Can I use the Buzzer 12mm with a 3.3V microcontroller?
A: Yes, the buzzer can operate at 3.3V, but the sound output may be lower compared to 5V operation.
Q: Is the Buzzer 12mm waterproof?
A: No, the Buzzer 12mm is not waterproof. Avoid exposing it to moisture or water.
Q: Can I use the buzzer for generating custom tones?
A: No, the Buzzer 12mm is an active buzzer and produces a fixed tone. For custom tones, use a passive buzzer.
This concludes the documentation for the Buzzer 12mm.