AGH PPO MBED cz.I

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
00002 #define KEYBOARD
00003 
00004 #include "TS_DISCO_F429ZI.h"
00005 
00006 enum KeyboardState {BUTTON_0, BUTTON_1, BUTTON_2, BUTTON_3, RELASED};
00007 
00008  class KeyboardTs: private TS_DISCO_F429ZI{
00009      public:
00010      enum KeyboardState eRead();
00011      KeyboardTs(unsigned char);
00012      unsigned char Column;
00013     };
00014 
00015 #endif