int buzz = 13;
void setup() {
// put your setup code here, to run once:
pinMode(buzz,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(buzz,500);
}
int buzz = 13;
void setup() {
// put your setup code here, to run once:
pinMode(buzz,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
tone(buzz,500);
}