Rad Silviu
Published

Buzz wire game

Make an easy Arduino buzz wire game in 10 minutes.

BeginnerFull instructions provided1 hour5,395
Buzz wire game

Things used in this project

Story

Read more

Schematics

Buzz wire game

Make a fast and easy school project.

Code

Buzz wire game

C/C++
A great school project
int buzzer = 9;

void setup() {

  pinMode(buzzer, INPUT);
}

void loop()
{
  tone(buzzer, 1000);
}

Credits

Rad Silviu

Rad Silviu

12 projects • 8 followers

Comments