1
1
#SerialPlotter protocol
2
2
3
- One message can consist ofmultiply parts.
3
+ One message can consist ofmultiple parts.
4
4
One part can consist of one label, one label and a value or only a value.
5
5
6
6
| | |
@@ -31,11 +31,11 @@ There is a special case, the CSV header style.
31
31
| -------| ----| ---------| -----| ---------| ----|
32
32
| Label 1| \t| Label 2| ...| Label n| \n|
33
33
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.
35
35
It is safer to just use the normal label only message.
36
36
37
37
##Value only messages Value
38
- This is not recommended if youusing a board with USB to UART converter.
38
+ This is not recommended if youuse a board with USB to UART converter.
39
39
Because when the label is sent, before you had the SerialPlotter opened, then the label/labels get/gets never set.
40
40
41
41
| | | | | | |
@@ -73,7 +73,7 @@ The output looks like this
73
73
```
74
74
##Single Trace with label
75
75
76
- This example sends the label once in the setup routine. Afterwards only the value issend .
76
+ This example sends the label once in the setup routine. Afterwards only the value issent .
77
77
78
78
``` ino
79
79
void setup () {
@@ -100,7 +100,7 @@ Label 1:\n
100
100
14\n
101
101
```
102
102
103
- ##Single Trace with labelsend every time
103
+ ##Single Trace with labelsent every time
104
104
105
105
This example sends the label every time together with the value.
106
106
@@ -126,7 +126,7 @@ Label 1:12\n
126
126
Label 1:13\n
127
127
Label 1:14\n
128
128
```
129
- ##Two Traces with labelsend every time
129
+ ##Two Traces with labelsent every time
130
130
131
131
This example sends two values together with the labels.
132
132