
Mbed part 1
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
KeyboardLed.h
- Committer:
- lolkusus
- Date:
- 2020-05-23
- Revision:
- 1:d392393df3d0
- Child:
- 3:715c5581d79f
File content as of revision 1:d392393df3d0:
#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