AGH MTM PPO MBED

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
matis755
Date:
Sat May 09 08:31:59 2020 +0000
Revision:
1:36b3fd4a01fd
Parent:
0:f4a48c08fea7
Add second column on display

Who changed what in which revision?

UserRevisionLine numberNew contents of line
matis755 1:36b3fd4a01fd 1 #ifndef KEYBOARD_TS_LCD
matis755 1:36b3fd4a01fd 2 #define KEYBOARD_TS_LCD
matis755 0:f4a48c08fea7 3
matis755 0:f4a48c08fea7 4 #include "Led_Lcd.h"
matis755 0:f4a48c08fea7 5 #include "Keyboard_Ts.h"
matis755 0:f4a48c08fea7 6
matis755 0:f4a48c08fea7 7 class KeyboardTsLcd {
matis755 0:f4a48c08fea7 8 public:
matis755 0:f4a48c08fea7 9 KeyboardTsLcd(unsigned char);
matis755 1:36b3fd4a01fd 10 enum KeyboardState eRead(void);
matis755 0:f4a48c08fea7 11 private:
matis755 0:f4a48c08fea7 12 LedLcd *pLed;
matis755 0:f4a48c08fea7 13 KeyboardTs *pKeyboard;
matis755 0:f4a48c08fea7 14 };
matis755 0:f4a48c08fea7 15
matis755 0:f4a48c08fea7 16 #endif