Skip to Content

Buzzer Active Module

The Active Buzzer Module is a compact and efficient component designed to generate sound alerts in various electronic projects. Powered by an S8550 transistor, this module is ideal for applications such as alarms, notification systems, and security circuits. It operates within a voltage range of 3.3V to 5V, making it compatible with most microcontrollers including Arduino.

Package Includes:

  • 1 x Active Buzzer Module (S8550 Transistor Driven)

12.00 AED 12.00 AED Tax Included
12.00 AED Tax Included

Not Available For Sale

This combination does not exist.

Active Buzzer

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days

 

Features:

  • Transistor Driven: Utilizes an S8550 transistor for effective sound signal control and amplification.
  • Wide Operating Voltage: Works reliably within 3.3V to 5V, supporting both 3.3V and 5V logic systems.
  • Compact Design: Small PCB size (3.3 cm x 1.3 cm) makes it easy to embed in tight spaces.
  • Easy Mounting: Includes pre-drilled bolt holes for secure and hassle-free installation.
  • Applications: Perfect for security systems, alert modules, and sound-based feedback systems.

Specifications:

  • Transistor: S8550
  • Working Voltage: 3.3V to 5V
  • PCB Size: 3.3 cm x 1.3 cm

How to Use with Arduino:

  • Connect the VCC pin of the module to the 5V or 3.3V pin of the Arduino.
  • Connect the GND pin to the Arduino GND.
  • Connect the signal IN pin to a digital output pin on the Arduino (e.g., D8).
  • Use digitalWrite(pin, HIGH) to turn the buzzer ON and digitalWrite(pin, LOW) to turn it OFF.

Example Arduino Code:


int buzzer = 8;

void setup() {
  pinMode(buzzer, OUTPUT);
}

void loop() {
  digitalWrite(buzzer, HIGH);
  delay(500);
  digitalWrite(buzzer, LOW);
  delay(500);
}

 

Reference:

  • Watch the tutorial video on how to use the buzzer module with Arduino.