MBED part 1 final version

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
rzeminska
Date:
2020-05-09
Revision:
0:04d5c5df5af6

File content as of revision 0:04d5c5df5af6:

#ifndef LED_H
#define LED_H

#include "LCD_DISCO_F429ZI.h"

class LedLcd: private LCD_DISCO_F429ZI{
    public:
        LedLcd(unsigned char);
        void On(unsigned char = 0);
    private:
        unsigned char ucColIndex;    
};

#endif