Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
angelo_perera
Published

How to works a buzzer with a Arduino

How to works a buzzer with a Arduino

BeginnerProtip242
How to works a buzzer with a Arduino

Things used in this project

Story

Read more

Schematics

circuit diagram

Code

code

Arduino
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);
}

Credits

angelo_perera
6 projects • 6 followers
Contact

Comments

Please log in or sign up to comment.