AGH UST mbed part 3

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Committer:
matis755
Date:
Sat May 23 07:11:44 2020 +0000
Revision:
2:db40a2b0b177
Parent:
Keyboard_Ts_Lcd.h@1:36b3fd4a01fd
Make class Led to drive each one directly;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
matis755 2:db40a2b0b177 1 #ifndef KEYBOARDLED
matis755 2:db40a2b0b177 2 #define KEYBOARDLED
matis755 0:f4a48c08fea7 3
matis755 2:db40a2b0b177 4 #include "Ledboard.h"
matis755 2:db40a2b0b177 5 #include "Keyboard.h"
matis755 0:f4a48c08fea7 6
matis755 2:db40a2b0b177 7 class KeyboardLed {
matis755 0:f4a48c08fea7 8 public:
matis755 2:db40a2b0b177 9 KeyboardLed(unsigned char);
matis755 1:36b3fd4a01fd 10 enum KeyboardState eRead(void);
matis755 0:f4a48c08fea7 11 private:
matis755 2:db40a2b0b177 12 Ledboard *pLed;
matis755 2:db40a2b0b177 13 Keyboard *pKeyboard;
matis755 0:f4a48c08fea7 14 };
matis755 0:f4a48c08fea7 15
matis755 0:f4a48c08fea7 16 #endif