Cirkit Designer Logo
Cirkit Designer
Your all-in-one circuit design IDE
Home / 
Component Documentation

How to Use Passive Buzzer: Examples, Pinouts, and Specs

Image of Passive Buzzer
Cirkit Designer LogoDesign with Passive Buzzer in Cirkit Designer

Introduction

The Keyes KY-006 Passive Buzzer is an audio signaling device that requires an external audio signal to produce sound. Unlike an active buzzer, which generates sound with an internal oscillator, the passive buzzer relies on an external signal, such as a square wave, to vibrate its diaphragm and create sound waves. This makes it versatile for applications where precise control over sound frequency and duration is required.

Explore Projects Built with Passive Buzzer

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Battery-Powered IR Sensor with Buzzer Alert System
Image of fire detector: A project utilizing Passive Buzzer in a practical application
This circuit is a sensor-activated buzzer system powered by a battery. An IR sensor detects an object and triggers an NPN transistor, which in turn activates a relay to power a buzzer. The circuit includes a voltage regulator to ensure stable 5V power supply and a rocker switch for manual control.
Cirkit Designer LogoOpen Project in Cirkit Designer
BC547 Transistor-Based Piezo Buzzer Circuit
Image of aodsold as: A project utilizing Passive Buzzer in a practical application
This circuit appears to be a simple buzzer driver using a BC547 NPN transistor as a switch. The piezo buzzer is connected to the collector of the transistor and is activated when the base of the transistor is provided with a current through a 10k Ohm resistor, which likely comes from a signal source not depicted in the provided information. The emitter of the transistor is grounded, completing the circuit when the base is biased.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered Buzzer Circuit
Image of  Buzzer with AA battery: A project utilizing Passive Buzzer in a practical application
This circuit consists of a simple buzzer connected to a 3V battery source. The positive terminal of the battery is connected to the buzzer's power input, and the negative terminal is connected to the buzzer's ground. The circuit is designed to power the buzzer continuously, producing a constant sound or tone as long as the battery provides sufficient voltage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered PIR Motion Sensor Alarm with Relay and Buzzer
Image of motion detector using pir motio0n sensor: A project utilizing Passive Buzzer in a practical application
This circuit is a motion-activated alarm system. It uses a PIR motion sensor to detect movement, which triggers a relay module to activate a buzzer powered by a 9V battery, providing an audible alert.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with Passive Buzzer

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
Image of fire detector: A project utilizing Passive Buzzer in a practical application
Battery-Powered IR Sensor with Buzzer Alert System
This circuit is a sensor-activated buzzer system powered by a battery. An IR sensor detects an object and triggers an NPN transistor, which in turn activates a relay to power a buzzer. The circuit includes a voltage regulator to ensure stable 5V power supply and a rocker switch for manual control.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of aodsold as: A project utilizing Passive Buzzer in a practical application
BC547 Transistor-Based Piezo Buzzer Circuit
This circuit appears to be a simple buzzer driver using a BC547 NPN transistor as a switch. The piezo buzzer is connected to the collector of the transistor and is activated when the base of the transistor is provided with a current through a 10k Ohm resistor, which likely comes from a signal source not depicted in the provided information. The emitter of the transistor is grounded, completing the circuit when the base is biased.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of  Buzzer with AA battery: A project utilizing Passive Buzzer in a practical application
Battery-Powered Buzzer Circuit
This circuit consists of a simple buzzer connected to a 3V battery source. The positive terminal of the battery is connected to the buzzer's power input, and the negative terminal is connected to the buzzer's ground. The circuit is designed to power the buzzer continuously, producing a constant sound or tone as long as the battery provides sufficient voltage.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of motion detector using pir motio0n sensor: A project utilizing Passive Buzzer in a practical application
Battery-Powered PIR Motion Sensor Alarm with Relay and Buzzer
This circuit is a motion-activated alarm system. It uses a PIR motion sensor to detect movement, which triggers a relay module to activate a buzzer powered by a 9V battery, providing an audible alert.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications and Use Cases

  • Alarm systems and notifications
  • Timers and reminders
  • Sound effects in electronic projects
  • Educational and DIY electronics
  • Arduino and microcontroller-based projects

Technical Specifications

The Keyes KY-006 Passive Buzzer is designed for simplicity and ease of integration into various electronic circuits. Below are its key technical details:

Parameter Specification
Operating Voltage 3.3V to 5V
Operating Current ≤ 25mA
Resonant Frequency ~2 kHz
Sound Pressure Level ≥ 85 dB (at 10 cm, 5V)
Dimensions 18.5mm x 15mm x 11.5mm
Weight ~2g

Pin Configuration and Descriptions

The KY-006 Passive Buzzer module has three pins, as described below:

Pin Label Description
1 Signal Input pin for the external audio signal (PWM)
2 VCC Power supply pin (3.3V to 5V)
3 GND Ground pin

Note: The Signal pin is connected to a microcontroller's PWM-capable pin to generate the required audio signal.

Usage Instructions

How to Use the KY-006 Passive Buzzer in a Circuit

  1. Connect the Pins:

    • Connect the VCC pin to a 3.3V or 5V power source.
    • Connect the GND pin to the ground of the circuit.
    • Connect the Signal pin to a PWM-capable pin of a microcontroller (e.g., Arduino UNO).
  2. Generate a Signal:

    • Use a microcontroller to generate a square wave signal on the Signal pin. The frequency of the square wave determines the pitch of the sound produced by the buzzer.
  3. Test the Buzzer:

    • Upload a test program to the microcontroller to verify the buzzer's operation.

Important Considerations and Best Practices

  • Ensure the operating voltage does not exceed 5V to avoid damaging the buzzer.
  • Use a PWM signal to control the sound frequency and duration.
  • Avoid continuous operation at high sound pressure levels to prevent overheating.
  • Place the buzzer in an open area for optimal sound output.

Example Code for Arduino UNO

Below is an example Arduino sketch to generate a simple tone using the KY-006 Passive Buzzer:

// Example code to control the KY-006 Passive Buzzer with Arduino UNO
// Connect the Signal pin of the buzzer to pin 9 on the Arduino

#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, 2000);  // Generate a 2 kHz tone
  delay(500);              // Play the tone for 500 ms
  noTone(BUZZER_PIN);      // Stop the tone
  delay(500);              // Wait for 500 ms before repeating
}

Note: The tone() function generates a square wave signal on the specified pin. The noTone() function stops the signal.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Sound from the Buzzer:

    • Cause: Incorrect wiring or insufficient power supply.
    • Solution: Verify the connections and ensure the VCC and GND pins are properly connected.
  2. Low or Distorted Sound:

    • Cause: Incorrect signal frequency or insufficient voltage.
    • Solution: Ensure the signal frequency is within the buzzer's resonant range (~2 kHz) and the operating voltage is between 3.3V and 5V.
  3. Buzzer Overheats:

    • Cause: Continuous operation at high sound pressure levels.
    • Solution: Limit the duration of continuous operation and allow cooling periods.
  4. Buzzer Does Not Respond to PWM Signal:

    • Cause: Signal pin not connected to a PWM-capable pin.
    • Solution: Use a PWM-capable pin on the microcontroller and verify the signal generation.

FAQs

Q1: Can the KY-006 Passive Buzzer produce different tones?
A1: Yes, the buzzer can produce different tones by varying the frequency of the PWM signal applied to the Signal pin.

Q2: Is the KY-006 Passive Buzzer suitable for battery-powered projects?
A2: Yes, its low current consumption (≤ 25mA) makes it suitable for battery-powered applications.

Q3: Can I use the KY-006 Passive Buzzer without a microcontroller?
A3: Yes, but you will need an external circuit to generate the required audio signal (e.g., a 555 timer IC).

Q4: What is the difference between a passive and an active buzzer?
A4: A passive buzzer requires an external signal to produce sound, while an active buzzer has an internal oscillator and only needs a DC voltage to operate.