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 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