2d1

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Led_Lcd.h Source File

Led_Lcd.h

00001 #ifndef LED_LCD
00002 #define LED_LCD
00003 
00004 #include "LCD_DISCO_F429ZI.h"
00005 
00006 class LedLcd : private LCD_DISCO_F429ZI{
00007     private:
00008         unsigned char ucColIdx;
00009     public:
00010         LedLcd(unsigned char);   
00011         void On(unsigned char);
00012 };
00013 
00014 #endif