2d1

Fork of TS_DISCO_F429ZI by ST

Led_Lcd.h

Committer:
Robsonik16
Date:
2017-05-05
Revision:
1:972c0d202476

File content as of revision 1:972c0d202476:

#ifndef LED_H
#define LED_H

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

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

};
#endif