11# SerialPlotter protocol
22
3- One message can consist of multiply parts.
3+ One message can consist of multiple parts.
44One part can consist of one label, one label and a value or only a value.
55
66| | |
@@ -31,11 +31,11 @@ There is a special case, the CSV header style.
3131| -------| ----| ---------| -----| ---------| ----|
3232| Label 1| \t | Label 2 | ... | Label n | \n |
3333
34- But in this format, labels consisting of only numbers are not recognised as labels.
34+ Note that in this format, labels consisting of only numbers are not recognised as labels.
3535It is safer to just use the normal label only message.
3636
3737## Value only messages Value
38- This is not recommended if you using a board with USB to UART converter.
38+ This is not recommended if you use a board with USB to UART converter.
3939Because when the label is sent, before you had the SerialPlotter opened, then the label/labels get/gets never set.
4040
4141| | | | | | |
@@ -73,7 +73,7 @@ The output looks like this
7373```
7474## Single Trace with label
7575
76- This example sends the label once in the setup routine. Afterwards only the value is send .
76+ This example sends the label once in the setup routine. Afterwards only the value is sent .
7777
7878``` ino
7979void setup () {
@@ -100,7 +100,7 @@ Label 1:\n
10010014\n
101101```
102102
103- ## Single Trace with label send every time
103+ ## Single Trace with label sent every time
104104
105105This example sends the label every time together with the value.
106106
@@ -126,7 +126,7 @@ Label 1:12\n
126126Label 1:13\n
127127Label 1:14\n
128128```
129- ## Two Traces with label send every time
129+ ## Two Traces with label sent every time
130130
131131This example sends two values together with the labels.
132132
0 commit comments