AGH UST mbed part 3

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

KeyboardLed.h

Committer:
matis755
Date:
2020-05-23
Revision:
2:db40a2b0b177
Parent:
Keyboard_Ts_Lcd.h@ 1:36b3fd4a01fd

File content as of revision 2:db40a2b0b177:

#ifndef KEYBOARDLED
#define KEYBOARDLED

#include "Ledboard.h"
#include "Keyboard.h"

class KeyboardLed {
    public:
        KeyboardLed(unsigned char);
        enum KeyboardState eRead(void);
    private:
        Ledboard *pLed;
        Keyboard *pKeyboard;
};

#endif