Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
KeyboardTsLcd.h
- Committer:
- wkierepka
- Date:
- 2020-06-01
- Revision:
- 0:5a62c1cece88
File content as of revision 0:5a62c1cece88:
#ifndef KEYBOARDTSLCD_H
#define KEYBOARDTSLCD_H
#include "Keyboard_Ts.h"
#include "Led_Lcd.h"
class KeyboardTsLcd {
public:
KeyboardTsLcd(unsigned char _ucColumn);
enum KeyboardState eRead();
private:
KeyboardTs *pKeyboard;
LedLcd *pLed;
};
#endif