You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/serial-monitor.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,9 +92,10 @@ The default configuration is as follows:
92
92
93
93
```json
94
94
"serialMonitor": {
95
+
"collapse": false,
96
+
"convertEol": false,
95
97
"display": "auto",
96
-
"newline": "lf",
97
-
"convertEol": false
98
+
"newline": "lf"
98
99
}
99
100
```
100
101
@@ -114,6 +115,16 @@ The `display` property configures when/how to display the serial monitor. The po
114
115
115
116
Note: the "terminal" mode supports text and background colors. You can check out [the Arduino ANSI colors example](https://wokwi.com/projects/308893120796295745) to see it in action.
116
117
118
+
### Collapse
119
+
120
+
You can set the Serial Monitor to be collapsed by default when it opens, by adding the `"collapse": true` property to the `"serialMonitor"` section:
121
+
122
+
```json
123
+
"serialMonitor": {
124
+
"collapse": true
125
+
}
126
+
```
127
+
117
128
### Newline
118
129
119
130
When you input a line of text in the Serial Monitor, the simulator sends that text to your program.
0 commit comments