A basic graphics package for the LPC4088 Display Module.

Dependents:   lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI lpc4088_displaymodule_fs_aid ... more

Fork of DMBasicGUI by EmbeddedArtists AB

Revision:
12:53601973f7eb
Parent:
11:265884fa7fdd
Child:
21:0038059e3a8f
--- a/Application/AppLauncher.cpp	Tue Feb 17 10:34:13 2015 +0100
+++ b/Application/AppLauncher.cpp	Thu Feb 19 14:37:29 2015 +0100
@@ -147,7 +147,7 @@
     // To keep track of the button pushes
     bool buttonPressed = false;
     bool buttonTimeout = false;
-    InterruptIn button(p23);
+    InterruptIn button(P2_10);
     button.rise(this, &AppLauncher::onButtonEvent);
     button.fall(this, &AppLauncher::onButtonEvent);
     RtosTimer  buttonTimer(onTimeoutEvent, osTimerOnce, &buttonTimeout);