a

Dependents:   2b

Led_Lcd.h

Committer:
Dom952
Date:
2016-04-23
Revision:
0:2459f0b51846

File content as of revision 0:2459f0b51846:

#ifndef LED_LCD_H
#define LED_LCD_H

#include "LCD_DISCO_F429ZI.h"

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

#endif