a

Dependents:   2d1

Revision:
0:8a0ef2058732
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Keyboard_Ts.h	Sat Apr 23 17:52:16 2016 +0000
@@ -0,0 +1,19 @@
+#ifndef KEYBOARD_TS_H
+#define KEYBOARD_TS_H
+
+#include "TS_DISCO_F429ZI.h"
+
+enum KeyboardTsState { RELASED , BUTTON_0 , BUTTON_1 , BUTTON_2 , BUTTON_3 };
+
+class KeyboardTs{
+public:
+    KeyboardTs (unsigned char);
+    enum KeyboardTsState eRead (void);
+private:
+    unsigned char Column;
+    uint16_t x, y;
+    TS_DISCO_F429ZI ts;
+    TS_StateTypeDef TS_State;
+};
+
+#endif
\ No newline at end of file