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