GUI parts for DISCO-F469I a fork of DISCO-F746NG. GuiBase, Button, ButtonGroup, ResetButton, Label, BlinkLabel, NumericLabel, SeekBar, SeekbarGroup

Dependents:   DISCO-F469NI_LCDTS_GUI_demo DISCO-F469NI_LCDTS_GUI_demo projekt_PSW_v1 DISCO-F469NI_LCDTS_GUI_demoaaaaaaaaaxxxx ... more

Fork of F746_GUI by 不韋 呂

Revision:
23:698bf2100743
Parent:
6:b8f197b0012c
--- a/GuiBase.hpp	Wed Aug 17 06:17:30 2016 +0000
+++ b/GuiBase.hpp	Thu Sep 22 17:50:06 2016 +0000
@@ -9,16 +9,16 @@
 
 #include "mbed.h"
 #include <string>
-#include "TS_DISCO_F746NG.h"
-#include "LCD_DISCO_F746NG.h"
+#include "TS_DISCO_F469NI.h"
+#include "LCD_DISCO_F469NI.h"
 
 namespace Mikami
 {
     class GuiBase
     {
     public:                    
-        static LCD_DISCO_F746NG* GetLcdPtr() { return &lcd_; }
-        static TS_DISCO_F746NG* GetTsPtr() { return &ts_; }
+        static LCD_DISCO_F469NI* GetLcdPtr() { return &lcd_; }
+        static TS_DISCO_F469NI* GetTsPtr() { return &ts_; }
 
         // If panel touched, return true
         static bool PanelTouched();
@@ -30,8 +30,8 @@
                ENUM_INACTIVE = 0xD0003538, ENUM_INACTIVE_TEXT = 0xFF808080};
 
     protected:
-        static LCD_DISCO_F746NG lcd_;  // for LCD display
-        static TS_DISCO_F746NG ts_;    // for touch pannel
+        static LCD_DISCO_F469NI lcd_;  // for LCD display
+        static TS_DISCO_F469NI ts_;    // for touch pannel
 
         static TS_StateTypeDef state_;
         static bool multiTouch_;