Mbed touchscreed project. To be corrected

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

KeyboardTsLcd.h

Committer:
piotrlopata
Date:
2020-05-11
Revision:
4:35b2f0e76b02
Parent:
1:55e05d2aa9cd

File content as of revision 4:35b2f0e76b02:

#ifndef KEYBOARD_TS_LCD_H
#define KEYBOARD_TS_LCD_H

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

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

#endif