//simple serial output test void setup() { Serial.begin(115200); } void loop() { for (int i=1; i<=100; i++) { Serial.print("Hello! Watch me count... "); Serial.println(i); delay(200); } }