Arduino buzzer Module: Difference between revisions

From Geeetech Wiki
Jump to navigation Jump to search
No edit summary
Line 12: Line 12:
==Usage==
==Usage==
[[File:Buzzer usage.jpg]]
[[File:Buzzer usage.jpg]]
VCC - 5V
GND - GND
S - Digital pin2


==Example code==
==Example code==

Revision as of 03:14, 10 May 2012

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