a

Led_Lcd.h

Committer:
Dom952
Date:
2016-04-23
Revision:
0:34b1537ddf24

File content as of revision 0:34b1537ddf24:

#ifndef LED_LCD_H
#define LED_LCD_H

#include "LCD_DISCO_F429ZI.h"

class LedLcd{
    public:
        LedLcd (unsigned char);
        void On (unsigned char);
    private:
        unsigned char Column;
        LCD_DISCO_F429ZI lcd;
};

#endif