
Mbed part 1
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: Keyboard.h
- Revision:
- 3:715c5581d79f
- Parent:
- 1:d392393df3d0
--- a/Keyboard.h Sat May 23 20:24:26 2020 +0000 +++ b/Keyboard.h Mon May 25 16:05:31 2020 +0000 @@ -1,6 +1,8 @@ #ifndef __Keyboard_H #define __Keyboard_H +#include "TS_DISCO_F429ZI.h" + typedef enum KeyState { BUTTON_0, @@ -17,6 +19,8 @@ KeyState eRead(); private: unsigned char ucColumnNumber; + TS_DISCO_F429ZI ts; + TS_StateTypeDef TS_State; }; #endif