vector

Dependencies:   MBED1zadD2 mbed BSP_DISCO_F429ZI

KeyboardLed.h

Committer:
filipksiezyc
Date:
2020-06-15
Revision:
2:f4852c55c418
Parent:
KeyboardTsLcd.h@ 0:a4ef65ad159f

File content as of revision 2:f4852c55c418:

#ifndef KEYBOARDLED_H
#define KEYBOARDLED_H
#include "Keyboard.h"
#include "Ledboard.h"

class KeyboardLed{
    private:  
        Keyboard* pKeyboard;
        Ledboard* pLedboard;    
    public:
        KeyboardLed(unsigned char _ucColumn=0);
        enum eButtonStates eRead();
};

#endif