We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4608b3f commit 3760be5Copy full SHA for 3760be5
examples/serial2/serial2.ino
@@ -7,6 +7,8 @@ void setup() {
7
}
8
9
void loop() {
10
- Serial2.println("Hallo world from Serial2");
+ auto txt = "Hallo world from Serial2";
11
+ Serial.println(txt);
12
+ Serial2.println(txt);
13
delay(1000); // Wait for 1 second
14
0 commit comments