Benjamin Stockdale / Mbed 2 deprecated MiniPro13_touch_lcd

Dependencies:   DmTouch_UniGraphic UniGraphic mbed

Fork of DisplayModule24_demo by John Larkin

Files at this revision

API Documentation at this revision

Comitter:
JLarkin
Date:
Thu Jan 14 19:32:42 2016 +0000
Parent:
7:1dbfaba27e99
Child:
9:8917e707fe8e
Commit message:
Removed lingering references to the timer

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- 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);