2d1

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Keyboard_Ts_Lcd.h Source File

Keyboard_Ts_Lcd.h

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