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

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

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

Introduction

The AZDelivery KY-006 Passive Buzzer is an audio signaling device that produces sound when an alternating current (AC) signal is applied. Unlike an active buzzer, which generates sound internally, the passive buzzer requires an external signal, such as a square wave, to produce sound. This makes it versatile for applications where precise control over sound frequency and duration is required.

Explore Projects Built with Buzzer Passive

Use Cirkit Designer to design, explore, and prototype these projects online. Some projects support real-time simulation. Click "Open Project" to start designing instantly!
BC547 Transistor-Based Piezo Buzzer Circuit
Image of aodsold as: A project utilizing Buzzer Passive 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 IR Sensor with Buzzer Alert System
Image of fire detector: A project utilizing Buzzer Passive 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
Battery-Powered Buzzer Circuit
Image of  Buzzer with AA battery: A project utilizing Buzzer Passive 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 Buzzer Passive 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 Buzzer Passive

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 aodsold as: A project utilizing Buzzer Passive 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 fire detector: A project utilizing Buzzer Passive 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  Buzzer with AA battery: A project utilizing Buzzer Passive 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 Buzzer Passive 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

  • Alarms and notifications in electronic devices
  • Sound effects in embedded systems
  • Timers and reminders
  • Educational projects and prototyping
  • Arduino-based projects for generating tones or melodies

Technical Specifications

Below are the key technical details for the KY-006 Passive Buzzer:

Parameter Value
Manufacturer AZDelivery
Part ID KY-006
Operating Voltage 3.3V to 5V
Operating Current ≤ 25mA
Resonant Frequency ~2 kHz
Sound Pressure Level ≥ 85 dB (at 10 cm, 5V input)
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 (S) Input pin for the control signal (e.g., PWM)
2 VCC Power supply pin (3.3V to 5V)
3 GND Ground pin

Note: The module typically comes with a 3-pin header, but only the Signal and GND pins are required for operation. The VCC pin is internally connected to the Signal pin.

Usage Instructions

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

  1. Connect the Pins:

    • Connect the Signal pin to a PWM-capable pin on your microcontroller (e.g., Arduino).
    • Connect the GND pin to the ground of your circuit.
    • Optionally, connect the VCC pin to the power supply if required.
  2. Generate a Signal:

    • Use a PWM signal to drive the buzzer. The frequency of the PWM signal determines the tone produced by the buzzer.
  3. Test the Buzzer:

    • Upload a test program to your microcontroller to generate a square wave signal and verify the buzzer's operation.

Important Considerations and Best Practices

  • Signal Frequency: The buzzer resonates best at ~2 kHz, but it can produce sound across a range of frequencies. Experiment with different frequencies to achieve the desired tone.
  • Power Supply: Ensure the power supply voltage is within the specified range (3.3V to 5V) to avoid damaging the component.
  • Avoid Continuous Operation: Prolonged operation at high volumes may reduce the buzzer's lifespan. Use it intermittently for alarms or notifications.

Example Code for Arduino UNO

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

// Example code for KY-006 Passive Buzzer with Arduino UNO
// Generates a tone at 2 kHz for 1 second, then pauses for 1 second

#define BUZZER_PIN 8  // Connect the Signal pin of the buzzer to digital pin 8

void setup() {
  pinMode(BUZZER_PIN, OUTPUT);  // Set the buzzer pin as an output
}

void loop() {
  tone(BUZZER_PIN, 2000);  // Generate a 2 kHz tone on the buzzer pin
  delay(1000);             // Wait for 1 second
  noTone(BUZZER_PIN);      // Stop the tone
  delay(1000);             // Wait for 1 second
}

Note: The tone() function is used to generate a square wave signal. The noTone() function stops the signal.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Sound from the Buzzer:

    • Cause: Incorrect wiring or insufficient signal.
    • Solution: Verify the connections. Ensure the Signal pin is connected to a PWM-capable pin and that the microcontroller is generating a signal.
  2. Low Volume or Distorted Sound:

    • Cause: Incorrect signal frequency or insufficient power supply.
    • Solution: Use a frequency close to the buzzer's resonant frequency (~2 kHz). Ensure the power supply voltage is within the specified range.
  3. Buzzer Produces a Continuous Tone:

    • Cause: The Signal pin is held HIGH instead of receiving a PWM signal.
    • Solution: Use a PWM signal or the tone() function to generate the desired sound.
  4. Buzzer Gets Hot:

    • Cause: Overvoltage or prolonged operation.
    • Solution: Check the power supply voltage and avoid continuous operation at high volumes.

FAQs

Q1: Can I use the KY-006 Passive Buzzer without a microcontroller?
A1: Yes, you can use an external oscillator circuit to generate a square wave signal, but a microcontroller like Arduino is more convenient for precise control.

Q2: What is the difference between a passive and an active buzzer?
A2: 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.

Q3: Can I use the KY-006 Passive Buzzer with a 3.3V microcontroller?
A3: Yes, the buzzer operates within a voltage range of 3.3V to 5V, making it compatible with 3.3V systems like ESP32 or Raspberry Pi.

Q4: How do I change the tone produced by the buzzer?
A4: Adjust the frequency of the PWM signal. Higher frequencies produce higher-pitched tones, while lower frequencies produce lower-pitched tones.