int count = 0; void setup() { Serial.begin(2400); } void loop() { Serial.print(count); count++; delay(300); }