0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Arduino UNO R4 WiFi をUSB経由で接続してSerial Monitorだと繋がっているのにExcel Data Streamerだとデータの取り込みができないとき

Posted at

Excel Data Streamerにおいて
Arduino UNO R3で問題なくデータを取り込めていたスケッチを、Arduino UNO R4 WiFiに書き込んで使ってみたらデータの取り込みができませんでした。
調べてみたところ、同じ症状の相談書き込みが
https://forum.arduino.cc/t/uno-r4-wifi-not-working-with-excel-data-streamer/1198001
にありました。
ようは環境によっては通信の開始時にdtr信号を送る必要があり、その場合は

test001.ino
#include<HID.h>
void setup(){
    Serial.begin(9600);
    Serial.dtr();
}

のように記述するとうまくいくかも
みたいなことが書いてあったのでこの通り試してみたところデータの取り込みに成功しました。
同じ症状で悩んでいる方は一度お試しあれ。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?