#define BUZZER_PIN 32





void setup() {
 pinMode(BUZZER_PIN, OUTPUT);


 
  tone(BUZZER_PIN,1500);
  delay(100);
  noTone(BUZZER_PIN);
  delay(100);



}

void loop() {
  
}
$abcdeabcde151015202530fghijfghij