Kacper Gaweda / Mbed 2 deprecated 2a

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers LedLcd.h Source File

LedLcd.h

00001 #ifndef LED_LCD
00002 #define LED_LCD
00003 #include "mbed.h"
00004 
00005 class LedLcd {
00006     private:
00007         void DrawKey(uint16_t iXPosKey, uint16_t iyPosKey, uint8_t iKeyNumber, uint32_t iColor);
00008         uint8_t iColumnNumber;
00009     public:
00010         LedLcd(uint8_t iColumnNumberConstructor);
00011         void LcdInit(void);
00012         void On(uint8_t iKeyIndex);
00013 };
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 #endif