Arduino / Unity信号灯超时时间已到期

时间:2019-03-15 15:44:16

标签: c# unity3d arduino

过一会儿,我的游戏停滞了,但出现了以下异常:

  

信号灯超时时间已过期

Unity只是将数据发送到arduino

Start(){
        port = new SerialPort("COM3", 9600);
        port.ReadTimeout = 50;
        port.WriteTimeout = 100;
        port.Open();
}

Update(){
       port.write("$$$");
}

当然,我最后关闭了端口。

对于arduino,我只使用SerialCommand.h。我尝试了很多事情:更改电缆,更改端口,驱动程序...但是似乎没有任何效果 你有主意吗?

0 个答案:

没有答案