Add some descriptive info to serial docs (#704)
* Local commit * Add some descriptive info to serial docs * Example typo * Tiny edit
This commit is contained in:
committed by
Peli de Halleux
parent
13f20bfcad
commit
ddc9aeae35
@ -6,9 +6,17 @@ Write an array of numbers to the [serial](/device/serial) port.
|
||||
serial.writeNumbers([0, 1, 2]);
|
||||
```
|
||||
|
||||
Instead of writing a single number at a time using [write number](/reference/serial/write-number), you can write multiple numbers to the serial port at once. They are written as _Comma Separated Values (CSV)_.
|
||||
|
||||
You can write the numbers `0` through `5` together and they will appear as one line of serial output:
|
||||
|
||||
``0,1,2,3,4,5``
|
||||
|
||||
This makes a line of CSV data where the commas between the numbers are the separators for each value.
|
||||
|
||||
## Parameters
|
||||
|
||||
* `values` is the array of [number](/types/number) to write to the serial port
|
||||
* `values`: the array of [numbers](/types/number) to write to the serial port
|
||||
|
||||
## Example: one two three
|
||||
|
||||
@ -23,7 +31,6 @@ basic.forever(() => {
|
||||
|
||||
## Example: plot temperature and light
|
||||
|
||||
|
||||
```blocks
|
||||
serial.writeLine("temp,light")
|
||||
basic.forever(() => {
|
||||
@ -36,4 +43,3 @@ basic.forever(() => {
|
||||
[serial](/device/serial),
|
||||
[serial write line](/reference/serial/write-line),
|
||||
[serial write value](/reference/serial/write-value)
|
||||
|
||||
|
Reference in New Issue
Block a user