Krzysztof Miskowicz, MBED cz. 1

Dependents:   EMBEED_I_zad_2d_II

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Led_Lcd.h Source File

Led_Lcd.h

00001 #ifndef LED_LCD_H
00002     #define LED_LCD_H
00003     #include "LCD_DISCO_F429ZI.h"
00004     class LedLcd
00005     {
00006         public:
00007             LedLcd(unsigned char ucMode);   
00008             void On(unsigned char ucLedNumber);
00009         private:
00010             LCD_DISCO_F429ZI lcd;
00011             unsigned  char ucButtonsColumn;
00012     };
00013 #else
00014     #error "This class was definied previously"
00015 #endif