Skip to content

Commit b667879

Browse files
committed
zephyrSerial: update hello world sample
Now uses and demonstrates Serial.print and println APIs Signed-off-by: Dhruva Gole <[email protected]>
1 parent 0056681 commit b667879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/hello_arduino/src/app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ void setup() {
1313
void loop() {
1414
char c = 'D';
1515
Serial.print(c);
16-
Serial.println("Dhruva");
16+
Serial.println("Hello, World!");
1717
delay(1000); // 1 second delay
1818
}

0 commit comments

Comments
 (0)