Brad Smith
/
rtcController
Gets current time from the PC over a serial connection
Python script available on the wiki page
terminal.h@0:c8dd8b2c6942, 2015-11-12 (annotated)
- Committer:
- mbedDevLondon
- Date:
- Thu Nov 12 19:17:47 2015 +0000
- Revision:
- 0:c8dd8b2c6942
Converted to FRDM board
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbedDevLondon | 0:c8dd8b2c6942 | 1 | #ifndef TERMINAL_H |
mbedDevLondon | 0:c8dd8b2c6942 | 2 | #define TERMINAL |
mbedDevLondon | 0:c8dd8b2c6942 | 3 | |
mbedDevLondon | 0:c8dd8b2c6942 | 4 | void initializePCTerminal(Serial *p); |
mbedDevLondon | 0:c8dd8b2c6942 | 5 | void clearScreen(); |
mbedDevLondon | 0:c8dd8b2c6942 | 6 | void locateCursor(int column, int row); |
mbedDevLondon | 0:c8dd8b2c6942 | 7 | int rgb888tobgr111(int colour); |
mbedDevLondon | 0:c8dd8b2c6942 | 8 | void setForeground(int colour); |
mbedDevLondon | 0:c8dd8b2c6942 | 9 | void setbBackground(int colour) ; |
mbedDevLondon | 0:c8dd8b2c6942 | 10 | |
mbedDevLondon | 0:c8dd8b2c6942 | 11 | void drawBox(int width, int height); |
mbedDevLondon | 0:c8dd8b2c6942 | 12 | #endif |