| `Car(cc);` | Send code cc to the UART | `Car(' '); Car(32); Car(0x20); //All three print a space` |
| `cc=Get();` | Wait for a key depressed. Use Teraterm, or other terminal software that does not work line-oriented. | `Car( Get() ); //Echo of the typed character` |
| `cc=Get();` | Wait for a key depressed. Use Teraterm, or other terminal software that does not work line-oriented. | `Car( Get() ); //Echo typed character` |
| `Text("abcd");` | Send the text and add a space | |
| `Textln("abcd");` | Same with CRLF | |
| `CR();` | Send a CR-LF | |
@ -105,4 +110,4 @@ For more information please see the [ATmega328 Datasheet](http://ww1.microchip.c
| `Zeros();` | +00nnn if you prefer | |
| `Compact();` | +nnn same as Arduino, but a + is shown if positive signed variable | |
See the included example code for practical usage of the TerSer library.