blabla

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI 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 
00004 enum KeyboardState{
00005     BUTTON_0,
00006     BUTTON_1,
00007     BUTTON_2,
00008     BUTTON_3,
00009     NO_BUTTON};
00010     
00011 class KeyboardTs{
00012     public:
00013         enum KeyboardState eRead();
00014         KeyboardTs(unsigned char x = 0);
00015     private:
00016         unsigned char ColumnXPos;
00017 };
00018 #endif
00019