AGH MTM PPO MBED

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Keyboard_Ts_Lcd.h

Committer:
matis755
Date:
2020-05-09
Revision:
1:36b3fd4a01fd
Parent:
0:f4a48c08fea7

File content as of revision 1:36b3fd4a01fd:

#ifndef KEYBOARD_TS_LCD
#define KEYBOARD_TS_LCD

#include "Led_Lcd.h"
#include "Keyboard_Ts.h"

class KeyboardTsLcd {
    public:
        KeyboardTsLcd(unsigned char);
        enum KeyboardState eRead(void);
    private:
        LedLcd *pLed;
        KeyboardTs *pKeyboard;
};

#endif