質問編集履歴
1
シリアルポートの設定に関して追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,6 +24,8 @@
|
|
24
24
|
smooth();
|
25
25
|
background(0); // 背景を黒にする
|
26
26
|
frameRate(10); // frame rateを5fpsに設定
|
27
|
+
port = new Serial(this,"COM5",115200);
|
28
|
+
port.clear();
|
27
29
|
for(int i=0; i<300; i++) // plotするデータの初期化
|
28
30
|
{
|
29
31
|
PlotData[i] = 0;
|