a
Dependencies: BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed
Fork of Mbed1d-2 by
Diff: Keyboard_TS.h
- Revision:
- 0:9b028a92ac8a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Keyboard_TS.h Mon Apr 24 15:26:38 2017 +0000 @@ -0,0 +1,21 @@ +#ifndef KEYBOARD_TS_H +#define KEYBOARD_TS_H + + +enum KeyboardState{ + RELASED, + BUTTON_0, + BUTTON_1, + BUTTON_2, + BUTTON_3}; + +class KeyboardTs{ +public: + virtual enum KeyboardState eRead(); + KeyboardTs(uint8_t); +private: + uint8_t column; + +}; + +#endif \ No newline at end of file