Send String

Send an arbitrary string to the device. Operates in two modes:

In text mode a Control-C character may be sent using any of the following strings:

^C
\d003
\x03

Escapes

Escape Sends
\n Line Feed (0x0A)
\r Carriage Return (0x0D)
\e Escape (0x1B)
\ Backslash (0x5C)
\^ Caret
\d??? The byte whose numerical value is given by ??? interpreted as a decimal number. Must pad to three digits.
\x?? The byte whose numerical value is given by ?? interpreted as a hexadecimal number. Must pad to two digits.
^? The control character represented by typing Ctrl-? on the keyboard.