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 Passive Buzzer KY-006 by AZDelivery is an audio signaling device that can be used to generate tones of varying frequencies. Unlike active buzzers that produce a tone when a DC voltage is applied, passive buzzers require an AC signal to operate. They are commonly used in alarm clocks, computers, timers, electronic toys, and many other devices where audio feedback is necessary.

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

  • User interface feedback
  • Alarm systems
  • Electronic toys and games
  • Timers and clocks
  • DIY projects involving microcontrollers like Arduino

Technical Specifications

Key Technical Details

  • Operating Voltage: 1.5V to 15V
  • Rated Current: <30mA
  • Sound Output: >85dB
  • Resonant Frequency: 2.5kHz ± 300Hz

Pin Configuration and Descriptions

Pin Number Description
1 Signal Input (S)
2 Ground (GND)

Usage Instructions

How to Use the Component in a Circuit

  1. Connect the buzzer's signal input pin to a PWM-capable pin on your microcontroller.
  2. Connect the ground pin of the buzzer to the ground pin on your microcontroller.
  3. Generate a square wave of the desired frequency to create sound.

Important Considerations and Best Practices

  • Do not exceed the maximum rated voltage of the buzzer.
  • Use a current-limiting resistor if necessary to prevent damage.
  • To produce different tones, vary the frequency of the PWM signal.
  • Ensure the buzzer is mounted securely to prevent unwanted vibrations.

Example Code for Arduino UNO

// Define the buzzer pin
int buzzerPin = 9;

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

void loop() {
  // Generate a 1kHz tone for 1 second
  tone(buzzerPin, 1000);
  delay(1000);
  
  // Stop the tone
  noTone(buzzerPin);
  delay(1000);
}

Troubleshooting and FAQs

Common Issues

  • No Sound: Ensure the buzzer is correctly connected and the PWM signal is within the operating voltage range.
  • Low Volume: Check if the voltage is too low or if the frequency is not at the resonant frequency of the buzzer.
  • Distorted Sound: Verify that the buzzer is not damaged and is mounted securely.

Solutions and Tips for Troubleshooting

  • Double-check wiring connections.
  • Use a multimeter to verify the voltage at the buzzer's pins.
  • Replace the buzzer if it appears to be damaged.

FAQs

Q: Can I use a passive buzzer with a DC voltage? A: No, passive buzzers require an AC signal, typically a square wave, to produce sound.

Q: What is the difference between a passive and an active buzzer? A: An active buzzer generates a tone when supplied with a DC voltage, while a passive buzzer requires an AC signal to produce sound.

Q: How do I change the tone produced by the buzzer? A: Change the frequency of the PWM signal sent to the buzzer's signal input pin.

Q: Can I use the passive buzzer with a microcontroller other than Arduino? A: Yes, as long as the microcontroller can generate a PWM signal within the buzzer's operating voltage range.

This documentation provides a comprehensive guide to using the AZDelivery KY-006 Passive Buzzer. For further assistance, consult the manufacturer's datasheet or contact technical support.