vector

Dependencies:   MBED1zadD2 mbed BSP_DISCO_F429ZI

Led.h

Committer:
filipksiezyc
Date:
2020-06-15
Revision:
2:f4852c55c418

File content as of revision 2:f4852c55c418:

#ifndef LED_H
#define LED_H
#include "LCD_DISCO_F429ZI.h"

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

#endif