
Mbed ex. 1
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: KeyboardTsLcd.h
- Revision:
- 0:5bdb01371db5
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/KeyboardTsLcd.h Sun May 24 16:07:21 2020 +0000 @@ -0,0 +1,16 @@ +#ifndef KEYBOARDTSLCD_H +#define KEYBOARDTSLCD_H + +#include "Keyboard_Ts.h" +#include "Led_Lcd.h" + +class KeyboardTsLcd{ + public: + KeyboardTsLcd(unsigned char _ucColumn); + enum State eRead(void); + private: + KeyboardTs *pKeyboard; + LedLcd *pLed; + }; + +#endif//KEYBOARDTSLCD_H