AGH UST mbed part 3

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led.h

Committer:
matis755
Date:
2020-06-16
Revision:
4:459a0389bb9f
Parent:
2:db40a2b0b177

File content as of revision 4:459a0389bb9f:

#ifndef LED
#define LED

#include "mbed.h"

class Led {
    public:
        Led(unsigned char ucColIdx, unsigned char ucRowIdx);
        void On();
        void Off();
    private:
        unsigned char ucColumn, ucRow;
        void Redraw(uint32_t Color);
};

#endif