Terminal
Published 31 Dec 2009, by
Simon Ford

No tags
« Back to documentation index
Show/hide line numbers
Terminal.h Source File
Terminal.h
00001
00002
00003
00004
00005
00006
00007
00008
00009 #include "mbed.h"
00010
00011 #ifndef MBED_TERMINAL_H
00012 #define MBED_TERMINAL_H
00013
00014 class Terminal : public Serial {
00015 public:
00016
00017 Terminal(PinName tx, PinName rx);
00018
00019
00020
00021 void cls();
00022 void locate(int column, int row);
00023 void foreground(int colour);
00024 void background(int colour);
00025 };
00026
00027 #endif