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, the passive buzzer requires an external signal, such as a square wave, to generate sound. This makes it versatile for applications where precise control over sound frequency and duration is needed.

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 with microcontrollers (e.g., Arduino, Raspberry Pi)

Technical Specifications

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

Parameter Value
Manufacturer AZDelivery
Part ID KY-006
Operating Voltage 3.3V to 5V
Operating Current ≤ 25mA
Sound Frequency Range 1kHz to 10kHz (external signal dependent)
Dimensions 18mm x 11mm x 8mm
Weight ~2g

Pin Configuration and Descriptions

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

Pin Label Description
1 Signal (S) Input pin for the external signal (e.g., square wave)
2 VCC Power supply pin (3.3V to 5V)
3 GND Ground connection

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 your circuit.
    • Connect the Signal (S) pin to a microcontroller's PWM-capable pin or an external signal generator.
  2. Generate a Signal:

    • Use a microcontroller (e.g., Arduino) to generate a square wave signal on the Signal (S) pin. The frequency of the square wave determines the sound pitch.
  3. Test the Buzzer:

    • Upload a test program to your microcontroller to verify the buzzer's operation. The buzzer should produce sound when the signal is applied.

Important Considerations and Best Practices

  • Signal Frequency: Ensure the signal frequency is within the buzzer's operating range (1kHz to 10kHz) for optimal sound output.
  • Power Supply: Do not exceed the recommended operating voltage (5V) to avoid damaging the component.
  • Mounting: Secure the buzzer module to prevent vibrations that could affect sound quality.
  • PWM Pins: Use a PWM-capable pin on your microcontroller for precise control over sound frequency and duration.

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 on the buzzer using a PWM signal

#define BUZZER_PIN 9  // Connect the Signal (S) pin of the buzzer to pin 9

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

void loop() {
  // Generate a 1kHz tone for 500ms
  tone(BUZZER_PIN, 1000); // tone(pin, frequency in Hz)
  delay(500);             // Wait for 500ms

  // Stop the tone for 500ms
  noTone(BUZZER_PIN);     // Stop the tone
  delay(500);             // Wait for 500ms
}

Notes:

  • The tone() function generates a square wave signal on the specified pin.
  • The noTone() function stops the signal, silencing the buzzer.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Sound from the Buzzer:

    • Cause: No signal is being applied to the Signal (S) pin.
    • Solution: Verify the connection between the microcontroller and the buzzer. Ensure the tone() function or equivalent signal generator is active.
  2. Distorted or Weak Sound:

    • Cause: Incorrect signal frequency or insufficient power supply.
    • Solution: Check that the signal frequency is within the buzzer's operating range (1kHz to 10kHz). Ensure the power supply voltage is stable and within the recommended range (3.3V to 5V).
  3. Buzzer Overheating:

    • Cause: Excessive voltage or prolonged operation at high current.
    • Solution: Ensure the operating voltage does not exceed 5V. Avoid continuous operation for extended periods without breaks.

FAQs

Q1: Can I use the KY-006 Passive Buzzer without a microcontroller?
A1: Yes, you can use an external signal generator to drive the buzzer. Ensure the signal frequency and voltage are within the specified range.

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 control the volume of the buzzer?
A3: The volume is primarily determined by the input voltage and cannot be directly controlled. However, you can adjust the duty cycle of the PWM signal to influence the perceived loudness.

Q4: Is the KY-006 compatible with 3.3V systems?
A4: Yes, the KY-006 Passive Buzzer operates with both 3.3V and 5V systems, making it compatible with a wide range of microcontrollers.