
aghmtmppo
Dependencies: LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI
Diff: Led.h
- Revision:
- 0:b7f6cb529d74
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Led.h Mon Jun 15 17:39:40 2020 +0000 @@ -0,0 +1,16 @@ +#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