Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: Conways_Game_Life uVGAII_demo 4DGLtest_CalSol uVGA_4180
Revision 4:6726016634ab, committed 2010-10-17
- Comitter:
- Kerpower
- Date:
- Sun Oct 17 09:45:39 2010 +0000
- Parent:
- 3:2978d0ac4b79
- Child:
- 5:52d54f5b52cd
- Commit message:
- Documenting the library
Changed in this revision
| TFT_4DGL.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/TFT_4DGL.h Sun Oct 17 09:35:55 2010 +0000
+++ b/TFT_4DGL.h Sun Oct 17 09:45:39 2010 +0000
@@ -177,12 +177,27 @@
TFT_4DGL(PinName tx, PinName rx, PinName rst);
// General Commands
+
+/** Clear screen
+*/
void cls();
+
+/** Reset screen
+*/
void reset();
+/** Launch Autobaud for serial communication
+*/
void autobaud();
+/** Set serail Baud rate (both sides : screen and mbed)
+*
+* @param Speed Correct BAUD value (see TFT_4DGL.h)
+*/
void baudrate(int);
+
void background_color(int);
+
void display_control(char, char);
+
void set_volume(char);
// Graphics Commands
uVGAII