a

Dependencies:   BSP_DISCO_F429ZI LCD_DISCO_F429ZI TS_DISCO_F429ZI mbed

Fork of Mbed1d-2 by Przemyslaw Drwal

KeyboardTsLcd.h

Committer:
pbl96
Date:
2017-04-24
Revision:
0:9b028a92ac8a

File content as of revision 0:9b028a92ac8a:

#ifndef KEYBOARDTSLCD_H
#define KEYBOARDTSLCD_H

#include "Led_Lcd.h"
#include "Keyboard_TS.h"


class KeyboardTSLcd{
  public:
    enum KeyboardState eRead();  
    KeyboardTSLcd(uint8_t Column);
  private:
    KeyboardTs *pKeyboard;
    LedLcd *pLed;
  };
  
#endif