Buzzer Module (Passive)

$3.15

20 in stock

Description

Passive Buzzer Module Code


/* SETUP

Passive-Buzzer Arduino
S       -      D9
        -      5V
-       -      GND
*/
 
int buzzer = 9 ;// setting controls the digital IO foot buzzer
void setup ()
{
  pinMode (buzzer, OUTPUT) ;// set the digital IO pin mode, OUTPUT out of Wen
}
void loop ()
{
  unsigned char i, j ;// define variables
  while (1)
  {
    for (i = 0; i <80; i++) // Wen a frequency sound
    {
      digitalWrite (buzzer, HIGH) ;// send voice
      delay (1) ;// Delay 1ms
      digitalWrite (buzzer, LOW) ;// do not send voice
      delay (1) ;// delay ms
    }
    for (i = 0; i <100; i++) // Wen Qie out another frequency sound
    {
      digitalWrite (buzzer, HIGH) ;// send voice
      delay (2) ;// delay 2ms
      digitalWrite (buzzer, LOW) ;// do not send voice
      delay (2) ;// delay 2ms
    }
  }
}

 

Additional information

Weight 0.003 kg

There are no reviews yet.

Be the first to review “Buzzer Module (Passive)”

Your email address will not be published. Required fields are marked *