Skip to content

Commit 3760be5

Browse files
committed
Serial2
1 parent 4608b3f commit 3760be5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/serial2/serial2.ino

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ void setup() {
77
}
88

99
void loop() {
10-
Serial2.println("Hallo world from Serial2");
10+
auto txt = "Hallo world from Serial2";
11+
Serial.println(txt);
12+
Serial2.println(txt);
1113
delay(1000); // Wait for 1 second
1214
}

0 commit comments

Comments
 (0)