Code Monkey home page Code Monkey logo

noise-transformer's People

Contributors

satoshuuu avatar taiki-fw avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

satoshuuu

noise-transformer's Issues

配列の要素数の最大値を増やす

countが最大値を超えたときに要素数が倍の配列を作成し、元の配列を格納する。

if(要素数 > count) {
  新しい配列[要素数*2] = 元の配列 + 空き;
  元の配列 = 新しい配列;
}

bug:音の方向の解析

左右のデジタル値が閾値以上であるか判別している。

// 例
閾値:300
左:350, 右:320

以上の場合、左から入力された音の方が大きい為、左方向からの音を左右で取得したことが予想されるが上記の実装だと左右の方向が判別出来ていない。

feat: sample code の追加

WHAT

動作確認用のコードを追加

例:

  • 振動モーターを振動させるために、任意のPinから出力するコード

./sample/xxx.ino

WHY

テストと動作確認をハード側で行いやすくするため

プレゼン項目

  • 背景

  • 目的

  • 意義

  • 仕様

  • 設計

  • 作品の詳細(機能の紹介だけでなく,製作にあたっての課題や解決方法なども)

  • 作業工程と作業担当,

  • スケジューリング

  • 作業計画実施時に発生した課題や解決方法など

  • 使用予算

  • 課題,今後の展望

delayTimeの選定

閾値を超えた値を検知した際の処理停止時間を決める。

閾値の選定

実際に騒音を測定し、閾値を決める。

for(int i=0; i<elem; i++) {
  Serial.print(rAvgArr[i]);
  Serial.print(',');
  Serial.print(lAvgArr[i]);
  Serial.println('');
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.