Krzysztof Miskowicz, MBED cz. 1

Dependents:   EMBEED_I_zad_2d_II

Led_Lcd.h

Committer:
krzysiek99
Date:
2020-05-08
Revision:
1:75fda8f7834c
Parent:
LCD_DISCO_F429ZI.h@ 0:dc55a068bc1a

File content as of revision 1:75fda8f7834c:

#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