Gets current time from the PC over a serial connection

Dependencies:   mbed

Python script available on the wiki page

terminal.h

Committer:
mbedDevLondon
Date:
2015-11-12
Revision:
0:c8dd8b2c6942

File content as of revision 0:c8dd8b2c6942:

#ifndef TERMINAL_H
#define TERMINAL

void initializePCTerminal(Serial *p);
void clearScreen();
void locateCursor(int column, int row);
int rgb888tobgr111(int colour);
void setForeground(int colour);
void setbBackground(int colour) ;

void drawBox(int width, int height);
#endif