Digital_Buzzer_Module_(SKU__DFR0032) - jimaobian/DFRobotWiki GitHub Wiki
Introduction
Here is the simplest sound making module that you can use High/Low to drive it. Just change the frequancy it buzz, you can hear different sound. It is widely used on your daily aplliance, like PC, fridgerator,phones and so on. And you also can create many interesting interactive project with this small but useful module.
Just try it!! You will find that creating electronic sound is so funny.
Specification
- Type: Digital
- Power supply: 5VDC
Tutorial
Diagram
Sample Code
int buzzPin = 3; //Connect Buzzer on Digital Pin3
void setup()
{
pinMode(buzzPin, OUTPUT);
}
void loop()
{
digitalWrite(buzzPin, HIGH);
delay(1);
digitalWrite(buzzPin, LOW);
delay(1);
}
Trouble shooting
More question and cool idea, visit DFRobot Forum
More
shopping dfrobot商城购买链接 shopping dfrobot distributor list
category: Product Manual category: DFR Series category: Sensors category:source category:Diagram