
mbed cz.1 ppo
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Keyboard_Ts.h
- Committer:
- wkierepka
- Date:
- 2020-06-08
- Revision:
- 2:3a2602b8d89b
- Parent:
- 0:5a62c1cece88
File content as of revision 2:3a2602b8d89b:
#ifndef KEYBOARD_TS_H #define KEYBOARD_TS_H #include "TS_DISCO_F429ZI.h" enum KeyboardState { RELASED, BUTTON_0, BUTTON_1, BUTTON_2, BUTTON_3 }; class KeyboardTs{ public: enum KeyboardState eRead(); KeyboardTs (unsigned char ucColumn); private: unsigned char ucColumnPosition; }; #endif