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