Electromagnetic Transducer Passive Buzzer

؋ 20

Description

 

code: for Arduino uon , Arduino Nano

const int buzzerPin = 9;
void setup(){
pinMode(buzzerPin, OUTPUT);
}

void loop(){
analogWrite(buzzerPin, 127);
delay(500);
analogWrite(buzzerPin,0);
delay(500);
}

 

Reviews

There are no reviews yet.

Be the first to review “Electromagnetic Transducer Passive Buzzer”

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