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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers F746_GUI.hpp Source File

F746_GUI.hpp

00001 //--------------------------------------------------------------
00002 //  F746-DISCO の GUI 用のインクルード文とそれらを使うための
00003 //  using 宣言をまとめたもの
00004 //  Include statements for F746-DISCO GUI and using directive
00005 //
00006 //  2018/03/12, Copyright (c) 2018 MIKAMI, Naoki
00007 //--------------------------------------------------------------
00008 
00009 #include "mbed.h"
00010 #ifndef __STM32F746xx_H
00011 #error Platform is not F746NG-DISCOVERY
00012 #endif
00013 
00014 #include "BlinkLabel.hpp"
00015 #include "ButtonGroup.hpp"
00016 #include "NumericLabel.hpp"
00017 #include "ResetButton.hpp"
00018 #include "SeekbarGroup.hpp"
00019 #include "NumericUpDown.hpp"
00020 
00021 using namespace Mikami;