2018年3月16日に開催されるCQ出版社インターフェース誌オフ会で紹介するプログラム

Dependencies:   mbed Array_Matrix BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG

Revision:
1:c27b3361dbbb
Parent:
0:f00cf31ae154
diff -r f00cf31ae154 -r c27b3361dbbb F746_Gui_New/ResetButton.hpp
--- a/F746_Gui_New/ResetButton.hpp	Sat Mar 10 11:37:33 2018 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,46 +0,0 @@
-//-----------------------------------------------------------
-//  ResetButton class -- derived class of Button class
-//
-//  2017/01/16, Copyright (c) 2017 MIKAMI, Naoki
-//-----------------------------------------------------------
-
-#ifndef F746_RESET_BUTTON_HPP
-#define F746_RESET_BUTTON_HPP
-
-#include "Button.hpp"
-
-namespace Mikami
-{
-    class ResetButton : public Button
-    {
-    public:
-        ResetButton(uint16_t x = 0, uint16_t y = 240,
-                    uint16_t w = 32, uint16_t h = 32)
-            : Button(x, y, w, h)
-        {
-            pt_[0] = (Point){x+0.2f*w, y+h/2};
-            pt_[1] = (Point){x+0.75f*w, y+0.175f*h};
-            pt_[2] = (Point){x+0.75f*w, y+0.825f*h};
-            Draw();
-        }
-
-        void DoIfTouched()
-        {
-            if (!Touched()) return;
-
-            wait(0.2f);
-            NVIC_SystemReset();
-        }
-        
-        void Draw()
-        {
-            Activate();
-            lcd_.SetTextColor(LCD_COLOR_WHITE);
-            lcd_.FillPolygon(pt_, 3);
-        }
-
-    private:
-        Point pt_[3];
-    };
-}
-#endif  // F746_RESET_BUTTON_HPP