2b

Fork of TS_DISCO_F429ZI by ST

Led_Lcd.h

Committer:
Robsonik16
Date:
2017-05-05
Revision:
1:ad1c1b95640c

File content as of revision 1:ad1c1b95640c:

#ifndef LED_H
#define LED_H

#include "mbed.h"
#include "LCD_DISCO_F429ZI.h"

class LedLcd
:public LCD_DISCO_F429ZI
{
    public:
        LedLcd(void);
    //protected:
        void On(unsigned char ucLedIndex);
        private:
        void DrawNumber();

};
#endif