Write a string to the serial port, without starting a new line afterward.
serial.writeString("");
text is the string to write to the serial portThis program writes the word JUMBO to the serial port repeatedly,
without any new lines.
basic.forever(() => {
serial.writeString("JUMBO");
basic.pause(1000);
});
serial, serial write line, serial write number, serial write value