blabla

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

KeyboardTsLcd.h

Committer:
amalcharek
Date:
2020-05-16
Revision:
0:b90c17e124b1

File content as of revision 0:b90c17e124b1:

#ifndef KEYBOARD_TS_LCD_H
#define KEYBOARD_TS_LCD_H
#include "Keyboard_Ts.h"
#include "Led_Lcd.h"

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