Wrote new Serial topic

This commit is contained in:
Ron Hale-Evans 2016-07-11 10:58:16 -07:00
parent 0d1b91afc3
commit a890d2a357
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
# Serial Write String
Write a string to the [serial](/device/serial) port,
without starting a new line afterward.
```sig
serial.writeString("");
```
### Parameters
* `text` is the [string](/reference/types/string) to write to the serial port
### Example: simple serial
This program writes the word `JUMBO` to the serial port repeatedly,
without any new lines.
```blocks
basic.forever(() => {
serial.writeString("JUMBO");
basic.pause(1000);
});
```
### See also
[serial](/device/serial),
[serial write line](/reference/serial/write-line),
[serial write number](/reference/serial/write-number),
[serial write value](/reference/serial/write-value)