int counter = 0;
void setup() {
Serial.begin(115200);
Serial.println("Ready to start");
}
void loop()
{
counter++;
Serial.println(counter);
delay(1000);
}int counter = 0;
void setup() {
Serial.begin(115200);
Serial.println("Ready to start");
}
void loop()
{
counter++;
Serial.println(counter);
delay(1000);
}