Skip to content

Commit 43aebe4

Browse files
committed
Update serial print informations
1 parent fe6f233 commit 43aebe4

File tree

2 files changed

+10
-4
lines changed
  • content

2 files changed

+10
-4
lines changed

content/hardware/02.uno/boards/uno-q/tutorials/01.user-manual/content.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1360,11 +1360,13 @@ With this example the UNO Q will send back whatever it receives on the UART.
13601360

13611361
#### From Serial to Monitor
13621362

1363-
Because of the UNO Q’s architecture, using `Serial` does not display data in the Arduino App Lab Serial Monitor as you might expect.
1363+
Because of the UNO Q’s architecture, using `Serial` does not display data in the Arduino App Lab **Console** as you might expect.
13641364

1365-
To make debugging just as easy as on other Arduino boards, we provide the `Monitor` object, which you can use to print debugging messages, sensor readings, or any other information directly to the Serial Monitor.
1365+
To make debugging just as easy as on other Arduino boards, we provide the `Monitor` object, which you can use to print debugging messages, sensor readings, or any other information directly to the App Lab Console.
13661366

1367-
You can do exactly the same, but with a minor prerequisite; including the `Arduino_RouterBridge` library in your sketch:
1367+
Note: `Serial` still works over UART, but its output is not shown in App Lab.
1368+
1369+
You can achieve the same behavior with a minor prerequisite: include the `Arduino_RouterBridge` library in your sketch.
13681370

13691371
```cpp
13701372
#include <Arduino_RouterBridge.h>

content/software/app-lab/tutorials/01.getting-started/apps-lab-ide.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,11 @@ Each official example provides a detailed documentation provided in the `readme.
229229
Once an App is launched, the status of the App is available in the **Console**. There are three tabs available:
230230
- **Start-up** - outputs the logs from the start-up process. Here you will find information regarding compilation for the microcontroller and deployment of the Python® application on the Linux system.
231231
- **Main (Python®)** - view the logs from the Python® application (`print()`)
232-
- **Sketch (Microcontroller)** - view serial data from the sketch (`Serial.println()`)
232+
- **Sketch (Microcontroller)** – view data sent from the sketch using `monitor.print()`.
233+
234+
> Note: `Serial.println()` outputs data over UART and is not shown in the App Lab Console.
235+
> To display messages in the Console, use `monitor.print()`.
236+
> Learn more in [From Serial to Monitor](https://docs.arduino.cc/tutorials/uno-q/user-manual/#from-serial-to-monitor)
233237
234238
![App logs](assets/app-logs.png)
235239

0 commit comments

Comments
 (0)