void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
String s= "\n";
void loop() {
delay(1000);
Serial.print(s);
Serial.printf("%s", s);
s = "a"+ s;
}
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
String s= "\n";
void loop() {
delay(1000);
Serial.print(s);
Serial.printf("%s", s);
s = "a"+ s;
}