1.2 KiB
1.2 KiB
Serial Write Line
Write a string to the serial port and start a new line of text
by writing \r\n
.
serial.writeLine("");
Parameters
text
is the string to write to the serial port
Example: simple serial
This program writes the word BOFFO
to the serial port repeatedly.
basic.forever(() => {
serial.writeLine("BOFFO");
basic.pause(5000);
});
Example: streaming data
This program checks the compass heading and sends the direction to the serial port repeatedly.
let degrees = 0
basic.forever(() => {
degrees = input.compassHeading()
if (degrees < 45) {
basic.showArrow(ArrowNames.North)
} else if (degrees < 135) {
basic.showArrow(ArrowNames.West)
} else if (degrees < 225) {
basic.showArrow(ArrowNames.South)
} else if (degrees < 315) {
basic.showArrow(ArrowNames.East)
} else {
basic.showArrow(ArrowNames.North)
}
})
See also
serial, serial write number, serial write string, serial write value