Mbed part 1
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: KeyboardLed.h
- Revision:
- 1:d392393df3d0
- Child:
- 3:715c5581d79f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/KeyboardLed.h Sat May 23 20:23:36 2020 +0000 @@ -0,0 +1,17 @@ +#ifndef __KeyboardLed_H +#define __KeyboardLed_H + +#include "Ledboard.h" +#include "Keyboard.h" + +class KeyboardLed +{ + public: + KeyboardLed(unsigned char _ucColumn = 0); + KeyState eRead(); + private: + Keyboard *pKeyboard; + Ledboard *pLed; +}; + +#endif