pxt-calliope/docs/reference/serial.md

12 lines
188 B
Markdown
Raw Normal View History

2016-04-16 01:36:31 +02:00
# Serial
2016-05-05 20:16:14 +02:00
Reading and writing data over a serial connection.
2016-04-16 01:36:31 +02:00
```cards
serial.writeLine("");
2016-05-19 22:56:24 +02:00
serial.writeNumber(0);
serial.writeValue(x, 0);
serial.writeString("");
serial.readLine();
2016-04-16 01:36:31 +02:00
```