Skip to content

Commit 8f5f95f

Browse files
authored
Update ide-v2-serial-plotter.md
Add some explanation of the "label:value, label:value\n" format.
1 parent 11a9819 commit 8f5f95f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/software/ide-v2/tutorials/ide-v2-serial-plotter/ide-v2-serial-plotter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void loop() {
8585
Serial.println(static_variable);
8686
}
8787
```
88-
***The Serial Plotter recognizes only CRLF`(\r\n)` & LF`(\n)` as linebreak characters. So ensure that the either there is a linebreak character after the last variable. You can use `Serial.print("\n")` or `Serial.print("\r\n")` to introduce a linebreak character at the end. Conversely, `Serial.println()` introduces a CRLF character automatically. Further, you can also use `\t`(tab) or ` `(space) as a delimiter instead of `,`(comma) in the above example.***
88+
***The Serial Plotter recognizes only CRLF`(\r\n)` & LF`(\n)` as linebreak characters. So ensure that the either there is a linebreak character after the last variable. You can use `Serial.print("\n")` or `Serial.print("\r\n")` to introduce a linebreak character at the end. Conversely, `Serial.println()` introduces a CRLF character automatically. Further, you can also use `\t`(tab) or ` `(space) as a delimiter instead of `,`(comma) in the above example. You can change the label the traces by prefixing the variables with a name and a colon like `name:` or `x:`. If you leave out the labels, default labels will be generated.***
8989

9090
## The Serial Plotter
9191

0 commit comments

Comments
 (0)