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_TsLcd.h Source File

Keyboard_TsLcd.h

00001 #ifndef KEYBOARD_TSLCD
00002 #define KEYBOARD_TSLCD
00003 
00004 #include "Keyboard_Ts.h"
00005 #include "Led_Lcd.h"
00006 
00007 
00008  class KeyboardTsLcd{
00009      public:
00010         enum KeyboardState eRead();
00011         KeyboardTsLcd(unsigned char);
00012      private:
00013         KeyboardTs *pKeyboard;
00014         LedLcd *pLed;
00015      
00016     };
00017 
00018 #endif