Difference between revisions of "Arduino buzzer Module"

From Geeetech Wiki
Jump to: navigation, search
(Created page with "==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...")
 
Line 1: Line 1:
 
==Introduction==
 
==Introduction==
  
 +
[[File:BUZZER1.jpg]]
 
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.
 
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.
  
Line 6: Line 7:
  
 
==Pin Definition==
 
==Pin Definition==
 +
[[File:Buzzer2.jpg]]
  
==Wiring Diagram==
+
==Usage==
 +
[[File:Buzzer usage.jpg]]
  
 
==Example code==
 
==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==
 
==How to buy it==
 +
Click here to buy [http://www.geeetech.com/arduino-buzzer-module-p-13.html Arduino buzzer module]

Revision as of 03:13, 10 May 2012

Introduction

BUZZER1.jpg 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

Buzzer2.jpg

Usage

Buzzer usage.jpg

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