HomeMadeGarbage Loading

Electrocardiogram Using TouchDesigner & Arduino

お父ちゃん  2017.9.24 
ホーム
電子工作
Raspberry Pi
IOT
音楽
Home > 電子工作 > Electrocardiogram Using TouchDesigner & Arduino
すき 0
うんこ 0

I created an electrocardiogram using TouchDesigner. The image moves according to the value of the sensor connected Arduino.

Sensor Configuration

Measure the heart rate with a sensor MAX30105.

Parts

  • Microcomputer Arduino uno

     
  • max30105-mounted particle sensor module

    The Arduino library for MAX30105 is below.
     https://github.com/sparkfun/SparkFun_MAX3010x_Sensor_Library

Arduino IDE Code

I used Example4_HeartBeat_Plotter.ino in Library Example of MAX 30105 .

The Touchdesigner program

Operation

 

#touchdesigner #arduino electrocardiogram #MAX30105

Posts shared by Home made garbage (@homemadegarbage)-

Program

  1. Serial data from Arduino acquisition

    Select and place the Serial operator from the DAT (Data) tab and obtain serial data from Arduino.

    • Port: Select the Arduino port connected to the PC
    • Baud Rate: 115200
       
  2. Selection of serial data.

    Select and place the Select operator from the DAT tab and wire it with the Serial operator so that only the latest serial data is acquired.

    • Select Rows: By Index
    • Start Row Index, End Row Index: 1
    • Select Cols: by Value
       
  3. Convert latest serial data to CHOP data

    Select and place the DAT to operator from the CHOP (Channel Operators) tab and convert the serial data of the DAT value to the value for CHOP.

    • First Column is: Values
       
  4. Plot CHOP data

    Select and place the Trail operator from the CHOP tab and wire it with the CHOP operator output and plot the data.
     

  5. CHOP filter serial data of sensorized sensor

    I wanted to eliminate the bias of the serial data, so I selected the Audio Filter operator from the CHOP tab.

    • Cutoff Units: Logarithmic Filter
    • Cutoff: 0.47
       
  6. Square the filtered data and convert it to a positive value

    Select, place, and wire Math operators from the CHOP tab.


    Channel Post OP:Square
     

    From Range: 0-40000 for Normalize output data
     

  7. Further filtering the output value

    Since the output value changes quite abruptly, arrange and wire the Filter operator from the CHOP tab and gently change the value.

    • Type:Left Half Gaussian
    • Filter per Sample:On
       

    The operation so far is as follows.

     

    Sensor output #touchdesigner

    Posts shared by Home made garbage (@homemadegarbage)-


     

  8. Add image to display

    Place the Movie File In operator from the TOP (Texture Operators) tab.

    File: Specify image data to display

    Here I will use the heart drawn by my daughter.

  9. Change image size with data output value

    Place the Fit operator from the TOP tab and connect the Movie File In operator.


    Click the “+” in the lower right of the Filter operator in 7. and drag chan1 to the Fit operator to open the selection window for various variables. Select Export to Scale X and change the X axis of the image with the output of Filter operator. Likewise with Export to Scale Y, let’s change the image size with Filter operator output value.

コメントはこちらから

メールアドレスが公開されることはありません。コメントのみでもOKです。

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください