AGH PPO MBED cz.I

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Keyboard_TsLcd.h

Committer:
kasruk11
Date:
2020-05-09
Revision:
0:2101f3b06f18

File content as of revision 0:2101f3b06f18:

#ifndef KEYBOARD_TSLCD
#define KEYBOARD_TSLCD

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


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

#endif