a

Dependents:   2d1

Led_Lcd.h

Committer:
Dom952
Date:
2016-04-23
Revision:
0:8cd2b75bfac6

File content as of revision 0:8cd2b75bfac6:

#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