vector
Dependencies: MBED1zadD2 mbed BSP_DISCO_F429ZI
Diff: Led.h
- Revision:
- 2:f4852c55c418
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Led.h Mon Jun 15 12:27:46 2020 +0000 @@ -0,0 +1,15 @@ +#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 \ No newline at end of file