void setup() {
Serial.begin(9600);
int x =0;
while ( x<5)
{
Serial.println(x);
x++;
delay(1000);
}
}
void loop() {
// put your main code here, to run repeatedly:
}
void setup() {
Serial.begin(9600);
int x =0;
while ( x<5)
{
Serial.println(x);
x++;
delay(1000);
}
}
void loop() {
// put your main code here, to run repeatedly:
}