int buzzer=1;
void setup() {
pinMode(buzzer,OUTPUT);
// put your setup code here, to run once:
}
void loop() {
digitalWrite(buzzer,HIGH);
// put your main code here, to run repeatedly:
}
int buzzer=1;
void setup() {
pinMode(buzzer,OUTPUT);
// put your setup code here, to run once:
}
void loop() {
digitalWrite(buzzer,HIGH);
// put your main code here, to run repeatedly:
}