

The Modulino Buzzer is a small electronic device designed to produce sound when an electrical signal is applied. It is commonly used in alarms, notifications, and sound effects for various electronic projects. This versatile component is ideal for hobbyists, students, and professionals working on Arduino-based projects, embedded systems, or other electronic circuits requiring audio feedback.








The Modulino Buzzer typically has two pins for connection:
| Pin Name | Description | Notes |
|---|---|---|
| VCC | Positive power supply input | Connect to 3.3V or 5V DC |
| GND | Ground connection | Connect to circuit ground |
VCC pin of the buzzer to a 3.3V or 5V power source, depending on your circuit's voltage level. Connect the GND pin to the ground of your circuit.VCC pin to produce sound. No additional circuitry is required to generate the tone.Below is an example of how to connect and control the Modulino Buzzer using an Arduino UNO:
// Modulino Buzzer Example with Arduino UNO
// This code produces a beep sound every second using the Modulino Buzzer.
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(500); // Wait for 500 milliseconds
digitalWrite(buzzerPin, LOW); // Turn the buzzer OFF
delay(500); // Wait for 500 milliseconds
}
Note: Ensure the buzzerPin is connected to the VCC pin of the Modulino Buzzer, and the GND pin is connected to the Arduino's ground.
No Sound Output:
VCC pin is connected to the positive voltage and the GND pin to ground.Low Sound Volume:
Intermittent Sound:
Buzzer Always ON:
VCC pin.Q: Can I use the Modulino Buzzer with a 9V battery?
A: No, the Modulino Buzzer is designed for 3.3V to 5V operation. Using a 9V battery may damage the component.
Q: Is the Modulino Buzzer waterproof?
A: No, the Modulino Buzzer is not waterproof. Avoid exposing it to moisture or water.
Q: Can I control the sound frequency of the Modulino Buzzer?
A: No, the Modulino Buzzer is an active buzzer with a fixed frequency (~2 kHz). For variable frequencies, consider using a passive buzzer.
Q: How far can the sound of the Modulino Buzzer be heard?
A: The sound pressure level is ≥ 85 dB at 10 cm. The audible range depends on environmental factors and background noise.
By following this documentation, you can effectively integrate the Modulino Buzzer into your electronic projects and troubleshoot any issues that arise.