Finalna wersja programu 2d_2 z pierwszej części zestawu mbed

Dependencies:   LCD_DISCO_F429ZI mbed TS_DISCO_F429ZI BSP_DISCO_F429ZI

Revision:
0:15cfee7b5bad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Led_Lcd.h	Sun May 10 21:48:38 2020 +0000
@@ -0,0 +1,17 @@
+#ifndef LED_LCD
+#define LED_LCD
+
+#include "LCD_DISCO_F429ZI.h"
+
+class LedLcd
+{
+    public:
+        LedLcd(unsigned char ucLed);
+        void On(unsigned char ucCtr);
+    private:
+        unsigned char ucXLed;
+        LCD_DISCO_F429ZI lcd;
+        void draw_button(int x_pos, int y_pos, int width, int height);
+};
+
+#endif /* LED_LCD */
\ No newline at end of file