Hello World for the Terminal ANSI/VT100 interface library

Dependencies:   Terminal mbed

main.cpp

Committer:
simon
Date:
2010-06-03
Revision:
0:93888862261d
Child:
1:dae8b7bc926d

File content as of revision 0:93888862261d:

// 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();
}