void setup() { Serial.begin(9600); // We will use (9600) baud for our serial connection void loop() { Serial.println("Hello from Sender Arduino Uno R3!"); delay(1000); // Every second will send this message }