Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/angelo_perera/how-to-works-a-buzzer-with-a-arduino-7efdaf/embed' width='350'></iframe>
How to works a buzzer with a Arduino
Read up about this project on
Watch this video and like this video.
void setup() { // put your setup code here, to run once: pinMode(13,OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(13,HIGH); delay(1000); digitalWrite(13,LOW); delay(1000); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.