FILIP KSIĘŻYC / Mbed 2 deprecated ZAD2_d2

Dependencies:   MBED1zadD2 mbed BSP_DISCO_F429ZI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Keyboard_Ts.h Source File

Keyboard_Ts.h

00001 #ifndef   KEYBOARD_TS_H
00002 #define   KEYBOARD_TS_H
00003 #include "TS_DISCO_F429ZI.h"
00004 
00005 enum eButtonStates{NONE, BUTTON_0, BUTTON_1, BUTTON_2, BUTTON_3};   
00006 
00007 class KeyboardTs{
00008     private:
00009         TS_DISCO_F429ZI LCD_Touch;   
00010         uint16_t uiColumnNumber;
00011     public:
00012         KeyboardTs(unsigned char ucColumn=0);
00013         enum eButtonStates eRead();
00014 };
00015 
00016 #endif