Wojciech Kłodziński / Mbed 2 deprecated mbed_cz1

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