//ESP-32-1-Counter
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
int ii=0;
while (ii++<10){
Serial.println("Round => " + String(ii));
delay(100);
}
doNothing();
}
void doNothing(){
Serial.println("DOING NOTHING NOW");
while (1==1) {
delay(10000);
}
}