Automate écran capacitif

Dependencies:   BSP_DISCO_F469NI LCD_DISCO_F469NI SeeedStudioTFTv2 TFT_fonts mbed

Fork of DISCO-F469NI_LCD_demo by ST

Committer:
SquirrelGod
Date:
Fri Mar 31 15:36:26 2017 +0000
Revision:
2:2182df2d7810
Programme ?cran capacitif

Who changed what in which revision?

UserRevisionLine numberNew contents of line
SquirrelGod 2:2182df2d7810 1 //--------------------------------------------------------------
SquirrelGod 2:2182df2d7810 2 // F746-DISCO の GUI 用のインクルード文とそれらを使うための
SquirrelGod 2:2182df2d7810 3 // using 宣言をまとめたもの
SquirrelGod 2:2182df2d7810 4 // Include statements for F746-DISCO GUI and using directive
SquirrelGod 2:2182df2d7810 5 //
SquirrelGod 2:2182df2d7810 6 // 2016/08/15, Copyright (c) 2016 MIKAMI, Naoki
SquirrelGod 2:2182df2d7810 7 // 2016/09/21, modifyed for use whith F469I-DISCO Axel Karch
SquirrelGod 2:2182df2d7810 8 //
SquirrelGod 2:2182df2d7810 9 //--------------------------------------------------------------
SquirrelGod 2:2182df2d7810 10
SquirrelGod 2:2182df2d7810 11 #include "mbed.h"
SquirrelGod 2:2182df2d7810 12 #ifndef __STM32F469xx_H
SquirrelGod 2:2182df2d7810 13 #error Platform is not F469I-DISCOVERY
SquirrelGod 2:2182df2d7810 14 #endif
SquirrelGod 2:2182df2d7810 15
SquirrelGod 2:2182df2d7810 16 #include "BlinkLabel.hpp"
SquirrelGod 2:2182df2d7810 17 #include "ButtonGroup.hpp"
SquirrelGod 2:2182df2d7810 18 #include "NumericLabel.hpp"
SquirrelGod 2:2182df2d7810 19 #include "ResetButton.hpp"
SquirrelGod 2:2182df2d7810 20 #include "SeekbarGroup.hpp"
SquirrelGod 2:2182df2d7810 21
SquirrelGod 2:2182df2d7810 22 using namespace Mikami;