1

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Revision:
0:6b004e89c859
diff -r 000000000000 -r 6b004e89c859 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon May 14 18:22:52 2018 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+#include "KeyboardTsLcd.h"
+ 
+ 
+int main()
+{
+    KeyboardTsLcd Keyboard;
+    LedLcd LedRight(2);
+   
+  
+    while(1) {
+        LedRight.On(Keyboard.eRead());
+        wait(0.1);
+    }
+}
+ 
\ No newline at end of file