MBED part 1 final version

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_H
00002 #define LED_H
00003 
00004 #include "LCD_DISCO_F429ZI.h"
00005 
00006 class LedLcd: private LCD_DISCO_F429ZI{
00007     public:
00008         LedLcd(unsigned char);
00009         void On(unsigned char = 0);
00010     private:
00011         unsigned char ucColIndex;    
00012 };
00013 
00014 #endif