LED_LCD
Diff: Led_Lcd.h
- Revision:
- 1:75fda8f7834c
- Parent:
- 0:dc55a068bc1a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Led_Lcd.h Fri May 08 19:03:38 2020 +0000 @@ -0,0 +1,15 @@ +#ifndef LED_LCD_H + #define LED_LCD_H + #include "LCD_DISCO_F429ZI.h" + class LedLcd + { + public: + LedLcd(unsigned char ucMode); + void On(unsigned char ucLedNumber); + private: + LCD_DISCO_F429ZI lcd; + unsigned char ucButtonsColumn; + }; +#else + #error "This class was definied previously" +#endif