mbed menu system
console.h@2:5c4911aba273, 2013-02-28 (annotated)
- Committer:
- mbedDevLondon
- Date:
- Thu Feb 28 03:33:50 2013 +0000
- Revision:
- 2:5c4911aba273
- Parent:
- 0:a5ece7312edc
formatting in menuIDs.h
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbedDevLondon | 0:a5ece7312edc | 1 | // console.h |
mbedDevLondon | 0:a5ece7312edc | 2 | // |
mbedDevLondon | 0:a5ece7312edc | 3 | #ifndef CONSOLE_H |
mbedDevLondon | 0:a5ece7312edc | 4 | #define CONSOLE_H |
mbedDevLondon | 0:a5ece7312edc | 5 | |
mbedDevLondon | 0:a5ece7312edc | 6 | #include <iostream> |
mbedDevLondon | 0:a5ece7312edc | 7 | #include <iomanip> |
mbedDevLondon | 0:a5ece7312edc | 8 | #include <cmath> |
mbedDevLondon | 0:a5ece7312edc | 9 | #include <cstdlib> |
mbedDevLondon | 0:a5ece7312edc | 10 | |
mbedDevLondon | 0:a5ece7312edc | 11 | |
mbedDevLondon | 0:a5ece7312edc | 12 | void clrscr(); |
mbedDevLondon | 0:a5ece7312edc | 13 | void gotoxy(int, int); |
mbedDevLondon | 0:a5ece7312edc | 14 | void printXY( char * text, int x, int y); |
mbedDevLondon | 0:a5ece7312edc | 15 | void setrgb(int); |
mbedDevLondon | 0:a5ece7312edc | 16 | |
mbedDevLondon | 0:a5ece7312edc | 17 | #endif |