Program to demonstrate the features of the DisplayModule DM-TFT24-104 display using the UniGraphics library.

Dependencies:   DmTouch_UniGraphic UniGraphic mbed

Fork of DisplayModule24_demo by Whitworth-EN173-2016

Revision:
8:9484e01decd9
Parent:
7:1dbfaba27e99
Child:
9:8917e707fe8e
--- a/main.cpp	Wed Jan 13 23:56:43 2016 +0000
+++ b/main.cpp	Thu Jan 14 19:32:42 2016 +0000
@@ -40,7 +40,6 @@
 int main()
 {
     myLCD.set_orientation(orient);
-    t.start();
     myLCD.set_font((unsigned char*) Arial24x23);
     myLCD.background(Blue);    // set background to red
     myLCD.foreground(White);    // set chars to black
@@ -147,7 +146,6 @@
     wait(2);
     // bmp 16bit test
     myLCD.cls();
-    t.reset();
     for(int y=0; y<myLCD.height(); y+=34)
     {
         for(int x=0; x<myLCD.width(); x+=48) myLCD.Bitmap(x,y,48,34,(unsigned char *)pavement_48x34);