void setup() { Serial.begin(9600); // start serial communication with 9600 baud rate } void loop() { // send text "hello" through the serial port every second Serial.println("hello"); delay(1000); }