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

How to Use buzzer: Examples, Pinouts, and Specs

Image of buzzer
Cirkit Designer LogoDesign with buzzer in Cirkit Designer

Introduction

A buzzer, manufactured by JJY with part ID bz, is an audio signaling device that produces sound when an electric current passes through it. Buzzers are widely used in various applications such as alarms, timers, and notification systems due to their simplicity and reliability. They are available in different types, including active and passive buzzers, and are commonly found in consumer electronics, industrial equipment, and hobbyist projects.

Explore Projects Built with 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 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
Battery-Powered IR Sensor and Buzzer Alarm System
Image of blindstick: A project utilizing buzzer in a practical application
This circuit consists of an IR sensor and a buzzer powered by a 9V battery. The IR sensor detects an object and triggers the buzzer to sound an alarm when an object is detected.
Cirkit Designer LogoOpen Project in Cirkit Designer
Arduino UNO Controlled School Bell System with DS3231 RTC and Relay Module
Image of automatic bell system: A project utilizing buzzer in a practical application
This circuit is designed as an automatic school bell system controlled by an Arduino UNO microcontroller. The Arduino is programmed to ring a buzzer at the start of each school period, with a total of 6 periods defined in the code. The DS3231 Real-Time Clock (RTC) module is used for accurate timekeeping, and a relay module interfaces the Arduino with the buzzer to handle the higher current required to drive the buzzer.
Cirkit Designer LogoOpen Project in Cirkit Designer
Battery-Powered IR Sensor with Buzzer Alert System
Image of Counter Tally: A project utilizing buzzer in a practical application
This circuit uses an IR sensor to detect an object and activate a buzzer. The IR sensor is powered by a 9V battery, and its output is connected to the positive terminal of the buzzer, causing the buzzer to sound when an object is detected.
Cirkit Designer LogoOpen Project in Cirkit Designer

Explore Projects Built with 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 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 blindstick: A project utilizing buzzer in a practical application
Battery-Powered IR Sensor and Buzzer Alarm System
This circuit consists of an IR sensor and a buzzer powered by a 9V battery. The IR sensor detects an object and triggers the buzzer to sound an alarm when an object is detected.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of automatic bell system: A project utilizing buzzer in a practical application
Arduino UNO Controlled School Bell System with DS3231 RTC and Relay Module
This circuit is designed as an automatic school bell system controlled by an Arduino UNO microcontroller. The Arduino is programmed to ring a buzzer at the start of each school period, with a total of 6 periods defined in the code. The DS3231 Real-Time Clock (RTC) module is used for accurate timekeeping, and a relay module interfaces the Arduino with the buzzer to handle the higher current required to drive the buzzer.
Cirkit Designer LogoOpen Project in Cirkit Designer
Image of Counter Tally: A project utilizing buzzer in a practical application
Battery-Powered IR Sensor with Buzzer Alert System
This circuit uses an IR sensor to detect an object and activate a buzzer. The IR sensor is powered by a 9V battery, and its output is connected to the positive terminal of the buzzer, causing the buzzer to sound when an object is detected.
Cirkit Designer LogoOpen Project in Cirkit Designer

Common Applications:

  • Alarm systems (e.g., fire alarms, security alarms)
  • Timers and reminders
  • Notification systems in appliances
  • Feedback indicators in electronic devices
  • Educational and DIY electronics projects

Technical Specifications

Below are the key technical details for the JJY bz buzzer:

Parameter Value
Operating Voltage 3V to 12V DC
Rated Voltage 5V DC
Current Consumption ≤ 30 mA
Sound Output Level ≥ 85 dB at 10 cm
Frequency Range 2 kHz to 4 kHz
Operating Temperature -20°C to +60°C
Dimensions 12 mm diameter, 8 mm height
Type Active Buzzer

Pin Configuration

The JJY bz buzzer has two pins for connection:

Pin Name Description
1 Positive (+) Connect to the positive terminal of the power supply or control signal.
2 Negative (-) Connect to the ground (GND) of the circuit.

Usage Instructions

How to Use the Buzzer in a Circuit

  1. Determine the Type of Buzzer: Ensure you are using an active buzzer (which has an internal oscillator and produces sound when powered) or a passive buzzer (which requires an external signal to produce sound). The JJY bz is an active buzzer.
  2. Connect the Pins:
    • Connect the positive pin (+) to the power supply or control signal (e.g., a microcontroller pin).
    • Connect the negative pin (-) to the ground (GND) of the circuit.
  3. Power the Buzzer: Apply a voltage within the operating range (3V to 12V DC). The buzzer will produce a sound automatically.

Important Considerations

  • Polarity: Ensure correct polarity when connecting the buzzer. Reversing the connections may damage the component.
  • Voltage Range: Do not exceed the maximum operating voltage (12V DC) to avoid damaging the buzzer.
  • Mounting: Secure the buzzer in place to prevent vibrations from affecting its performance.
  • Noise Level: Place the buzzer in an open area for optimal sound output.

Example: Using the Buzzer with an Arduino UNO

The JJY bz buzzer can be easily controlled using an Arduino UNO. Below is an example code to make the buzzer beep at regular intervals:

// Example code to control the JJY bz buzzer with an Arduino UNO

// Define the pin connected to the buzzer
const int buzzerPin = 8;

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
}

Notes:

  • The delay() function controls the duration of the sound and silence. Adjust the values to change the beep pattern.
  • Use a current-limiting resistor if necessary to protect the buzzer and the microcontroller.

Troubleshooting and FAQs

Common Issues and Solutions

  1. No Sound from the Buzzer:

    • Cause: Incorrect polarity or insufficient voltage.
    • Solution: Verify the connections and ensure the voltage is within the operating range.
  2. Buzzer Produces Weak Sound:

    • Cause: Insufficient current or obstructed sound output.
    • Solution: Check the power supply and ensure the buzzer is not obstructed.
  3. Buzzer Overheats:

    • Cause: Exceeding the maximum voltage or prolonged operation at high current.
    • Solution: Use a voltage regulator or current-limiting resistor to protect the buzzer.
  4. Intermittent Sound:

    • Cause: Loose connections or unstable power supply.
    • Solution: Secure all connections and use a stable power source.

FAQs

Q1: Can I use the JJY bz buzzer with a 3.3V microcontroller?
A1: Yes, the buzzer operates at a minimum voltage of 3V, so it is compatible with 3.3V systems.

Q2: How do I differentiate between an active and a passive buzzer?
A2: An active buzzer produces sound when powered, while a passive buzzer requires an external signal (e.g., PWM) to generate sound.

Q3: Can I control the volume of the buzzer?
A3: The volume is fixed, but you can reduce the sound output by lowering the supply voltage within the operating range.

Q4: Is the JJY bz buzzer waterproof?
A4: No, the buzzer is not waterproof. Avoid exposing it to moisture or water.

By following this documentation, you can effectively integrate the JJY bz buzzer into your projects and troubleshoot common issues with ease.