mbeed1sdf

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Fork of 2D_2_ by Adrian Nowak

KeyboardTsLcd.h

Committer:
adrianow795
Date:
2017-05-29
Revision:
0:1f84f23f3814

File content as of revision 0:1f84f23f3814:

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

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










#endif