Add the following snippet to your HTML:
Make an easy Arduino buzz wire game in 10 minutes.
Read up about this project on
Make a very fast and easy school project.I took this project at school and I got a 10 (A)
int buzzer = 9; void setup() { pinMode(buzzer, INPUT); } void loop() { tone(buzzer, 1000); }
Comments