int a=10;
void setup() {
// put your setup code here, to run once:
pinMode(a, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
delay(1000);
tone(a,1000);
delay(1000);
noTone(a);
}
int a=10;
void setup() {
// put your setup code here, to run once:
pinMode(a, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
delay(1000);
tone(a,1000);
delay(1000);
noTone(a);
}