Arduino buzzer Module
From Geeetech Wiki
Introduction
This is the Arduino Buzzer Module. Through the Arduino or other controllers, this module will be able to control the buzzer sounds or MID music easily. It is extended with the Arduino board sensors used in combination, to achieve the control of an interactive sound and light works.
Specification
Pin Definition
Usage
VCC - 5V
GND - GND
S - Digital pin2
Example code
int buzzPin = 2; //Connect Buzzer on Digital Pin3 void setup() { pinMode(buzzPin, OUTPUT); } void loop() { digitalWrite(buzzPin, HIGH); delayMicroseconds(50); digitalWrite(buzzPin, LOW); delayMicroseconds(50); }
How to buy it
Click here to buy Arduino buzzer module