system.serial.write
This function is used in Python Scripting.
Description​
Write a String to a serial port using the platforms default character encoding.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.serial.write(port, toWrite)
Parameters​
Type | Parameter | Description |
---|---|---|
String | port | The previously configured serial port to use. |
String | toWrite | The String to write. |
Returns​
Nothing
Scope​
All
Code Examples​
Example #1
system.serial.write("COM1", "my string")