
1
India
Name : 5V Passive Buzzer-10 Pcs.
Net Quantity (N) : 1
Input Voltage(Max.) : 5V
Resistance : 42 Ω
Resonance Frequency : 2048 Hz
Body Size : 12 x 8mm
Pin Pitch : 6mm
External Material : Plastic;
Color : Black
This is Small PCB Mountable 5V Passive Buzzer-10 Pcs.. It is great to add Audio Alert to your electronic designs. It operates on 5V supply, uses a coil element to generate an audible tone.
Package Includes :
10 x 5V Passive Buzzer.
*************Sample Code For Interfacing Buzzer With Arduino******************
int Buzz=3;
void setup ()
{
Serial.begin(9600);
pinMode(Buzz,OUTPUT);
tone(Buzz,5000); // for more details on tone function please visit Arduino.cc
delay(1000);
}
void loop()
{
for(int i=0;i<255;i++)
{
analogWrite(Buzz,i);
delay(100);
analogWrite(Buzz,0);
delay(100);
analogWrite(Buzz,255);
}
}
Country of Origin : India
More Information