int count_number = 0;
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:
if(count_number == 10){
Serial.println("finish Count");
}else if(count_number >10){
Serial.println("Over Count");
}
count_number = count_number + 1;
delay(1000);
}