10Mm Passive Buzzer Board For Arduino
Rs. 18.00 Rs. 23.00
- Product Code: SEN-SOUND
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
Feature:
-No oscillation source, need square wave (frequency 2K-5K ) to drive.
-Sound frequency control, you can make a "do re mi fa sol la si" effect.
SPECIFICATIONS: | |
Working voltage | 3.5-5.5V |
Working current | <25mA |
PCB Dimension | 18.5mm x 15mm(L x W) |
OVERVIEW: | |
Working voltage | 3.5-5.5V |
Working current | <25mA |
PCB Dimension | 18.5mm x 15mm(L x W) |
PACKAGE INCLUDES:
1 PCS x 10Mm Passive Buzzer Board For Arduino
int buzzer=8;// Set the control the buzzer digital IO pin
void setup()
{
pinMode(buzzer,OUTPUT);// Setting the digital IO pin mode , OUTPUT is Wen out
}
void loop()
{
unsigned char i,j;// Define the variable
while(1)
{
for(i=0;i<80;i++)// Wen a frequency sound
{
digitalWrite(buzzer,HIGH);// Sound
delay(1);//delay 1ms
digitalWrite(buzzer,LOW);//Not sound
delay(1);// delay 1ms
}
for(i=0;i<100;i++)// Wen out another frequency sound
{
digitalWrite(buzzer,HIGH);// Sound
delay(2);//delay 2ms
digitalWrite(buzzer,LOW);// Not sound
delay(2);//delay 2ms
}
}
}
15 days