CQエレクトロニクス・セミナ「実習・マイコンを動かしながら学ぶディジタル・フィルタ」で使うプログラムを,入力として STM32F746 の内蔵 ADC を使うように変更したもの. http://seminar.cqpub.co.jp/ccm/ES18-0020

Dependencies:   mbed Array_Matrix BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG

Revision:
2:dd48e1e59daa
Parent:
1:501a83a5ee9d
--- a/F746_Gui_New/SeekbarGroup.cpp	Wed Nov 08 11:43:52 2017 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,72 +0,0 @@
-//-----------------------------------------------------------
-//  SeekbarGroup class
-//
-//  2017/01/25, Copyright (c) 2017 MIKAMI, Naoki
-//-----------------------------------------------------------
-
-#include "SeekbarGroup.hpp"
-
-namespace Mikami
-{
-    SeekbarGroup::SeekbarGroup(
-            uint16_t x0, uint16_t y0, uint16_t length,
-            uint16_t number, uint16_t space,
-            float min, float max, float initialValue,
-            SeekBar::Orientation hv,
-            uint32_t thumbColor, uint16_t thumbSize, uint16_t width,
-            uint32_t colorL, uint32_t colorH, uint32_t backColor)
-        : NUMBER_(number)
-    {
-        seekBars_.SetSize(number);
-        for (int n=0; n<number; n++)
-        {
-            uint16_t x = x0;
-            uint16_t y = y0;
-            if (hv == SeekBar::Holizontal) y += space*n;
-            else                           x += space*n;
-            seekBars_[n] =
-                new SeekBar(x, y, length, min, max, initialValue, hv,
-                            thumbColor, thumbSize, width,
-                            colorL, colorH, backColor);
-        }
-    }
-
-    // Get slided number
-    bool SeekbarGroup::GetSlidedNumber(int &num)
-    {
-        bool active = false;
-        for (int n=0; n<NUMBER_; n++)
-            if (seekBars_[n]->IsActive()) active = true;
-        if (!active) return false;
-
-        if (!GuiBase::PanelTouched())
-        {
-            for (int n=0; n<NUMBER_; n++)
-            {
-                if (seekBars_[n]->GetSlided())
-                    seekBars_[n]->Draw(seekBars_[n]->GetValue());
-                seekBars_[n]->SetSlided(false);
-            }
-            return false;
-        }
-
-        bool rtn = false;
-        uint16_t x, y;
-        for (int n=0; n<NUMBER_; n++)
-        {
-            if (seekBars_[n]->IsOnThumb(x, y))
-            {
-                if ((num != n) && Range(num))
-                    seekBars_[num]->Draw(seekBars_[num]->GetValue());
-                num = n;
-                seekBars_[n]->SetValue(seekBars_[n]->ToValue(SeekBar::Point(x, y)));
-                seekBars_[n]->Draw(seekBars_[n]->GetValue(), true);
-                seekBars_[n]->SetSlided(true);
-                rtn = true;
-            }
-            if (rtn) break;
-        }
-        return rtn;
-    }
-}
-