AGH MTM PPO MBED

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led_Lcd.h

Committer:
matis755
Date:
2020-05-09
Revision:
1:36b3fd4a01fd
Parent:
0:f4a48c08fea7

File content as of revision 1:36b3fd4a01fd:

#ifndef LED_LCD
#define LED_LCD

#include "LCD_DISCO_F429ZI.h"

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

#endif