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