Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI
Keyboard_Ts.h
- Committer:
- stanmac
- Date:
- 2020-05-18
- Revision:
- 0:6e3505b453da
File content as of revision 0:6e3505b453da:
#ifndef KEYBOARD_TS_H #define KEYBOARD_TS_H enum KeyboardState{ BUTTON_0, BUTTON_1, BUTTON_2, BUTTON_3, RELEASED}; class KeyboardTs{ public: KeyboardTs(unsigned char); enum KeyboardState eRead(); private: unsigned char ucKeyboardColumnPosition; }; #endif