2d_2 Tomasz Balon

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

KeyboardTsLcd.h

Committer:
shinoku99
Date:
2020-05-18
Revision:
3:1809f618b474
Parent:
1:d168af8a9cbc

File content as of revision 3:1809f618b474:

#ifndef KEYBOARDTSLCD_H
#define KEYBOARDTSLCD_H

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

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

#endif