cw2d-2

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

KeyboardTsLcd.h

Committer:
wolve265
Date:
2020-05-11
Revision:
1:a89a995856ce
Parent:
0:6d0b62cb7525

File content as of revision 1:a89a995856ce:

#ifndef KEYBOARDTSLCD_H
#define KEYBOARDTSLCD_H

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

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

#endif