Initial version.

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Revision:
0:00760a80f72b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Keyboard_TsLcd.h	Mon May 18 15:00:45 2020 +0000
@@ -0,0 +1,16 @@
+#ifndef KEYBOARDTSLCD_H
+#define KEYBOARDTSLCD_H
+
+#include "Keyboard_Ts.h"
+#include "Led_Lcd.h"
+
+class KeyboardTsLcd{
+    private:
+        KeyboardTs *pKeyboard;
+        LedLcd *pLed;    
+    public:
+        KeyboardTsLcd(unsigned char _ucColumn);
+        enum State eRead(void);
+};
+
+#endif
\ No newline at end of file