#define BUZZER_PIN 32
void setup() {

  Serial.begin(115200);
  pinMode(BUZZER_PIN, OUTPUT);
}

void loop() {
  tone(BUZZER_PIN, 500);
  delay(500);
  noTone(BUZZER_PIN);
  delay(5000);

}
$abcdeabcde151015202530fghijfghij