Ks0103 keyestudio EASY plug Passive Buzzer Module: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
Line 56: Line 56:


http://www.keyestudio.com/keyestudio-easy-plug-passive-buzzer-module-for-arduino.html
http://www.keyestudio.com/keyestudio-easy-plug-passive-buzzer-module-for-arduino.html
[[category:Module]]
 
 
 
[[category:EASY Plug]]

Revision as of 10:42, 30 October 2018

EASY plug Passive Buzzer Module


thumb

Introduction

We can use Arduino to make many interactive works of which the most commonly used is acoustic-optic display. The buzzer we introduced here is a passive buzzer. It cannot be actuated by itself, but by external pulse frequencies. Different frequencies produce different sounds. We can use Arduino to code the melody of a song, which is actually quite fun and simple.
Note: this module needs to be used together with EASY plug control board.


Specification

  • Interface: Easy plug
  • Working voltage: 3.3-5v
  • Sensor type: digital
  • Size: 39*20mm
  • Weight: 6g


Connection Diagram


thumb


Sample Code

int buzzer=8;//set digital IO pin of the buzzer
void setup()
{
pinMode(buzzer,OUTPUT);// set digital IO pin pattern, OUTPUT to be output
}
void loop()
{ unsigned char i,j;//define variable
while(1)
{ for(i=0;i<80;i++)// output a frequency sound
{ digitalWrite(buzzer,HIGH);// sound
delay(1);//delay1ms
digitalWrite(buzzer,LOW);//not sound
delay(1);//ms delay
}
for(i=0;i<100;i++)// output a frequency sound
{
digitalWrite(buzzer,HIGH);// sound
digitalWrite(buzzer,LOW);//not sound
delay(2);//2ms delay
}
}
}


Resources

PDF

https://drive.google.com/open?id=1pQj561dWpMkzIBY1siyFwDCJgOCjXUPi

Buy from

Official Website

http://www.keyestudio.com/keyestudio-easy-plug-passive-buzzer-module-for-arduino.html