5V Active Alarm Buzzer Module for Arduino Original price was: ₹87.00.Current price is: ₹48.00.
Back to products
High Current Active Alarm Buzzer Driver Module Original price was: ₹78.00.Current price is: ₹49.00.

PCB Mounted Passive Buzzer Module

  • Working voltage: 1.5 to 15 volts DC
  • Working Current: 25mA or less
  • Range of Tone Generation: 1.5 ~ 2.5 kHz
  • Dimensions: 26 x 15 x 11 mm (L x W x H).

IBOTS's 10th Anniversary Sale

Hurry and get discounts on all Raspberry Products up to 20%

IBOTS1000

Original price was: ₹68.00.Current price is: ₹45.00.

  • Pick up from the IBOTS Store

Free

  • Delivery Charges: Tamil Nadu

₹75 for parcels below 1 Kg and ₹100 for parcels weighing between 1 Kg to 2 Kg.

2-3 Days

₹75

  • Delivery Charges: Other South India

₹125 for parcels below 1 Kg and ₹175 for parcels weighing between 1 Kg to 2 Kg.

2-3 Days

₹125

  • Delivery Charges: North India

₹250 for parcels below 1 Kg and ₹325 for parcels weighing between 1 Kg to 2 Kg.

2-3 Days

₹250

  • Courier delivery

Our courier will deliver to the specified address

2-3 Days

Rs. 99

  • Warranty 1 year
  • Free Returns Policy

Payment Methods:

1. Order the Product and Specify the Delivery Method

2. You Will Receive an Order Confirmation Message

3. Wait for Your Order to Arrive

4. Pick up Your Order at The Checkout Area

Description

A passive buzzer module is an integrated digital transducer with DC power supply that is widely used in alarms, computers, copiers, printers, timers, digital toys, cars, and other digital electronics projects for alert sound.

By turning it on and off at various frequencies using delays or PWM, this PCB mounted passive buzzer module can produce a variety of sound tones depending on the input frequency, i.e., it can generate tones between 1.5 and 2.5 kHz.

This module works with microcontrollers like the Arduino and has a pin pitch of 2.54mm, making it perfect for adding noise to your project. With the help of this module, you may reply to programmatic changes with a wonderful, unpleasant beep that can be adjusted over a frequency range for optimal annoyance.
The buzzer needs to be activated by receiving a square wave on the I/O pin. This can be generated by any widely used microcontroller.

The following Arduino Sample sketch will generate two different tones by turning on and off the buzzer at different frequencies using a delay.

int buzzer = 8; // set the buzzer control digital IO pin 
void setup() { 
pinMode(buzzer, OUTPUT); // set pin 8 as output
 }
void loop() { 
for (int i = 0; i < 80; i++) { 
     digitalWrite(buzzer, HIGH); // make a sound
     delay(1); // send high signal to buzzer
     digitalWrite(buzzer, LOW); // delay 1ms
     delay(1); // send low signal to buzzer 
                             }
 delay(50);
 for (int j = 0; j < 100; j++) { 
     digitalWrite(buzzer, HIGH);  //make another sound 
     delay(2);
     digitalWrite(buzzer, LOW); // delay 2ms 
     delay(2);
                               }
 delay(100); 
}
Connection Diagram:

Connections:
  • Arduino: Buzzer
  • GND: (minus sign)
  • Center pin: No connection
  • Any digital pin: S

Specifications and Features:

  1. Operating Voltage : 1.5 ~ 15V DC
  2. Working Current: Less than 25mA
  3. Material: Plastic
  4. Tone Generation Range : 1.5 ~ 2.5kHz
  5. Dimensions (LxWxH):  26 x 15 x 11 mm
  6. Colour: Black
  7. Weight: 3g

Customer Reviews

0 reviews
0
0
0
0
0

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.