void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {}
void serialEvent() {
while (Serial.available()) {
String str = Serial.readString();
Serial.print(str);
}
}