Electronic Brick - Buzzer

Electronic Brick - Buzzer

Electronic Brick - Buzzer

Electronic brick of buzzer can be connected to the digital I / O port, when the output is low, buzzer will give a long sound. If it is connected to an analog pulse width modulation (PWM) output , the buzzer can produce a variety of tones, which can be made into the speaker of electronic organ.

55 items in stock

Price:

1,50 €

Add to cart

Tinklapyje visos kainos nurodytos su 21% PVM.

No reward points for this product.

More info

What is an electronic brick? An electronic brick is an electronic module which can be assembled like Lego bricks simply by plugging in and pulling out. Compared to traditional universal boards and circuit modules assembled with various electronic components, electronic brick has standardized interfaces, plug and play, simplifying construction of prototype circuit on one’s own. There are many types of electronic bricks, and we provide more than twenty types with different functions including buttons, sensors, Bluetooth modules, etc, whose functions cover from sensor to motor drive, from Ethernet to wireless communication via Bluetooth, and so on. We will continue to add more types to meet the various needs of different projects.

Electronic brick of buzzer can be connected to the digital I / O port, when the output is low, buzzer will give a long sound. If it is connected to an analog pulse width modulation (PWM) output , the buzzer can produce a variety of tones, which can be made into the speaker of electronic organ.

Data sheet

  • Width - 33 mm
  • Depth - 14 mm
  • Supply voltage - 5V DC
  • Connectors - 2.54 mm 3 pin / Grove
  • The method of transmission - Digital

Source codes

Connect S port of electronic brick of buzzer to D13 port of Arduino, and we will use the following program to make buzzer produce sounds at intervals of 1s.

int buzzer = 13;
void setup() {               
  // sukonfiguruojamas garsiakalbio prievadas kaip išėjimas 
  pinMode(buzzer, OUTPUT);    
}
 
void loop() {
  digitalWrite(buzzer, HIGH);   // Išjungiamas garsiakalbis
  delay(1000);               // Laukiama viena sekundė
  digitalWrite(buzzer, LOW);    // Įjungiamas garsiakalbis
  delay(1000);               // Laukiama viena sekundė
}

25 other products in the same category:

Customers who bought this product also bought: