

The buzzer activo is an electronic component that produces sound when an electrical signal is applied. It is an active buzzer, meaning it has an internal oscillator and can generate sound on its own when powered, without requiring an external signal generator. This makes it simple to use in a variety of applications.








Below are the key technical details of a typical buzzer activo:
| Parameter | Value |
|---|---|
| Operating Voltage | 3V to 12V |
| Rated Voltage | 5V |
| Current Consumption | ≤ 30mA |
| Sound Output Level | 85 dB at 10 cm (typical) |
| Frequency Range | 2 kHz to 4 kHz |
| Operating Temperature | -20°C to +60°C |
| Dimensions | Varies (e.g., 12mm diameter) |
The buzzer activo typically has two pins:
| Pin | Description |
|---|---|
| Positive (+) | Connect to the positive terminal of the power supply or microcontroller output. |
| Negative (-) | Connect to the ground (GND) of the circuit. |
Below is an example of how to connect and control the buzzer activo using an Arduino UNO:
// Buzzer Activo Example with Arduino UNO
// This code makes the buzzer produce sound in a pattern.
const int buzzerPin = 8; // 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(500); // Wait for 500 milliseconds
digitalWrite(buzzerPin, LOW); // Turn the buzzer OFF
delay(500); // Wait for 500 milliseconds
}
buzzerPin is set to pin 8, which is connected to the buzzer's positive terminal.setup() function configures the pin as an output.loop() function alternates between turning the buzzer ON and OFF, creating a beeping sound.No Sound from the Buzzer
Buzzer Produces Weak or Distorted Sound
Buzzer Does Not Turn Off
Q: Can I use the buzzer activo with a 3.3V microcontroller?
Q: How loud is the buzzer activo?
Q: Can I control the buzzer's tone or frequency?
By following this documentation, you can effectively integrate the buzzer activo into your projects and troubleshoot common issues.