2b

Fork of TS_DISCO_F429ZI by ST

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