English
1int frequency = 400; 2int buzzerPin = 7; 3 4void setup() { 5} 6 7void loop() { 8 tone(buzzerPin, frequency); 9 delay(300); 10 noTone(buzzerPin); 11 delay(300); 12}