mbed menu system
console.h
- Committer:
- mbedDevLondon
- Date:
- 2013-02-28
- Revision:
- 2:5c4911aba273
- Parent:
- 0:a5ece7312edc
File content as of revision 2:5c4911aba273:
// console.h // #ifndef CONSOLE_H #define CONSOLE_H #include <iostream> #include <iomanip> #include <cmath> #include <cstdlib> void clrscr(); void gotoxy(int, int); void printXY( char * text, int x, int y); void setrgb(int); #endif