GUI parts for DISCO-F746NG. GuiBase, Button, ButtonGroup, ResetButton, Label, BlinkLabel, NumericLabel, SeekBar, SeekbarGroup, NumericUpDown

Dependencies:   Array_Matrix BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG

Dependents:   F746_AudioOutQSPI F746_AudioPlayerSD DISCO-F746NG_test001 F746_SD_WavPlayer ... more

Revision:
23:2078556088a6
Parent:
9:c379410bda15
--- a/Label.hpp	Wed Aug 17 06:17:30 2016 +0000
+++ b/Label.hpp	Sun Oct 02 07:25:06 2016 +0000
@@ -1,7 +1,7 @@
 //-----------------------------------------------------------
 //  Label class -- Header
 //
-//  2016/04/24, Copyright (c) 2016 MIKAMI, Naoki
+//  2016/10/02, Copyright (c) 2016 MIKAMI, Naoki
 //-----------------------------------------------------------
 
 #ifndef F746_LABEL_HPP
@@ -29,7 +29,7 @@
               uint32_t textColor = GuiBase::ENUM_TEXT,
               uint32_t backColor = GuiBase::ENUM_BACK)
             : GuiBase(x, y, fonts, textColor, backColor),
-              MODE_(mode), STR_("") {}
+              MODE_(mode), STR_(""), length_(0) {}
 
         void Draw()
         {   Draw(STR_, TEXT_COLOR_); }