Simon Fords Terminal with bug fix in ::locate

Dependents:   UARTSnoop BaseJpegDecode_example

Fork of Terminal by Simon Ford

Revision:
1:96ae39e58792
Parent:
0:2bf27af3c759
Child:
2:85184c13476c
diff -r 2bf27af3c759 -r 96ae39e58792 main.cpp
--- a/main.cpp	Thu Dec 31 09:50:48 2009 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-// simple test for a ANSI/VT100 Terminal, sford
-
-#include "mbed.h"
-
-#include "Terminal.h"
-
-Terminal term(USBTX, USBRX); // tx, rx
-
-int main() {
-    term.printf("Hello World!\nHow are you?");
-
-    wait(2);
-
-    term.locate(3,1);
-    term.foreground(0xFF0000);
-    term.printf("I'm Great!");
-
-    wait(3);
-
-    term.cls();
-}