Serial Write String
Write a string to the serial port, without starting a new line afterward.
serial.writeString("")
Parameters
text
is the 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.
basic.forever(function() {
serial.writeString("JUMBO")
basic.pause(1000)
})
See also
serial, serial write line, serial write number, serial write value