int count = 0;
int x = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
count = count + 1;
x = x + 1 ;
Serial.println (x) ;
delay(100);
// if (count == 10 )
// {
// x=0;
// count = 0 ;
}