1

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

KeyboardTsLcd.h

Committer:
marutson
Date:
2018-05-14
Revision:
0:6b004e89c859

File content as of revision 0:6b004e89c859:

#ifndef KEYBOARDTSCLD_H
#define KEYBOARDTSCLD_H
 
#include "Led_Lcd.h"
#include "Keyboard_Ts.h"
 
class KeyboardTsLcd {
    
        KeyboardTs *pKeyboard;
        LedLcd *pLed;
        
    public:
        KeyboardTsLcd(void);
        int eRead(void);
    
};
 
#endif