void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
pinMode(14, INPUT);
//Serial.println("Hello, ESP32-S2!");
}
void loop() {
tone(14,1500);
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}