aghmtmppo

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Led.h

Committer:
domino5740
Date:
2020-06-15
Revision:
0:b7f6cb529d74

File content as of revision 0:b7f6cb529d74:

#ifndef LED_H
#define LED_H

#include "LCD_DISCO_F429ZI.h"

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

#endif