code review

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
thepaueu
Date:
Thu May 14 18:45:14 2020 +0000
Revision:
0:db2c7dc10f89
Pawel Majtas cw 2d2

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thepaueu 0:db2c7dc10f89 1 #ifndef _KEYBOARDTSLCD_H
thepaueu 0:db2c7dc10f89 2 #define _KEYBOARDTSLCD_H
thepaueu 0:db2c7dc10f89 3
thepaueu 0:db2c7dc10f89 4 #include "KeyboardTs.h"
thepaueu 0:db2c7dc10f89 5 #include "LedLcd.h"
thepaueu 0:db2c7dc10f89 6
thepaueu 0:db2c7dc10f89 7
thepaueu 0:db2c7dc10f89 8 class KeyboardTsLcd{
thepaueu 0:db2c7dc10f89 9
thepaueu 0:db2c7dc10f89 10 public:
thepaueu 0:db2c7dc10f89 11 KeyboardTsLcd(unsigned char);
thepaueu 0:db2c7dc10f89 12 enum BUTTON eRead(void);
thepaueu 0:db2c7dc10f89 13 KeyboardTs *pKeyboard;
thepaueu 0:db2c7dc10f89 14 LedLcd *pLed;
thepaueu 0:db2c7dc10f89 15 };
thepaueu 0:db2c7dc10f89 16
thepaueu 0:db2c7dc10f89 17 #endif