2c

Fork of TS_DISCO_F429ZI by ST

Revision:
1:b346257d266d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Led_Lcd.h	Fri May 05 19:35:45 2017 +0000
@@ -0,0 +1,24 @@
+#ifndef LED_H
+#define LED_H
+
+#include "mbed.h"
+#include "LCD_DISCO_F429ZI.h"
+
+class LedLcd
+:public LCD_DISCO_F429ZI
+{
+    public:
+        LedLcd(unsigned char _ucCol=0);
+    //protected:
+        void On(unsigned char ucLedIndex);
+        private:
+        void DrawNumber();
+        unsigned char ucCol;
+
+};
+#endif
+
+
+
+
+