Kamil Maruta / Mbed 2 deprecated zad_2d_2

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers KeyboardTsLcd.h Source File

KeyboardTsLcd.h

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