Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: LedLcd.h
- Revision:
- 1:1ce1a6359874
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LedLcd.h Mon Jun 01 11:21:26 2020 +0000 @@ -0,0 +1,24 @@ +#ifndef LED_LCD +#define LED_LCD +#include "mbed.h" + +class LedLcd { + private: + void DrawKey(uint16_t iXPosKey, uint16_t iyPosKey, uint8_t iKeyNumber, uint32_t iColor); + uint8_t iColumnNumber; + public: + LedLcd(uint8_t iColumnNumberConstructor); + void LcdInit(void); + void On(uint8_t iKeyIndex); +}; + + + + + + + + + + +#endif \ No newline at end of file