![](/media/cache/profiles/a556a127b68b84f902a150bed22bc7d1.jpg.50x50_q85.jpg)
Cool Fancy Terminal
Dependencies: SerialTerminal mbed
Fork of Fancy-Terminal by
main.cpp
- Committer:
- madmonkeyman82
- Date:
- 2015-10-16
- Revision:
- 4:317962df01f8
- Parent:
- 3:35b0711f1832
File content as of revision 4:317962df01f8:
// simple test for a ANSI/VT100 Terminal, sford #include "mbed.h" #include "SerialTerminal.h" SerialTerminal pc(USBTX, USBRX, 19600); // tx, rx int main() { while(1) { pc.cls(); pc.locate(20,10); pc.printf("How are you?"); wait(2); pc.locate(20,11); pc.foreground(0xFF0000); pc.background(0x000007F); pc.printf("I'm Great!"); pc.hideCursor(); wait(2); } }