
mbed1 - amalcharek
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: KeyboardTsLcd.h
- Revision:
- 0:b6ccdd6b093a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/KeyboardTsLcd.h Sat May 16 11:23:08 2020 +0000 @@ -0,0 +1,15 @@ +#ifndef KEYBOARD_TS_LCD_H +#define KEYBOARD_TS_LCD_H +#include "Keyboard_Ts.h" +#include "Led_Lcd.h" + +class KeyboardTsLcd{ + public: + KeyboardTsLcd(unsigned char); + enum KeyboardState eRead(); + private: + KeyboardTs *pKeyboard; + LedLcd *pLed; +}; +#endif +