iT邦幫忙

1

Arduino 旋轉編碼器連結Unity發生ioexception: 存取被拒

  • 分享至 

  • xImage

Arduino程式碼如下
int val;
int encoder0PinA = 3;
int encoder0PinB = 4;
int encoder0Pos = 0;
int encoder0PinALast = LOW;
int n = LOW;

void setup() {
pinMode (encoder0PinA,INPUT);
pinMode (encoder0PinB,INPUT);
Serial.begin (9600);
}

void loop() {
n = digitalRead(encoder0PinA);
if ((encoder0PinALast == LOW) && (n == HIGH)) {//上升沿
if (digitalRead(encoder0PinB) == LOW) {
encoder0Pos--;
} else {
encoder0Pos++;
}
Serial.println (encoder0Pos);

}
encoder0PinALast = n;
}

而Unity的程式碼

using UnityEngine;
using System.IO.Ports;

public class Rotary : MonoBehaviour {
SerialPort serialPort = new SerialPort();
// Use this for initialization
void Start () {

    serialPort.PortName = "COM3";
    serialPort.BaudRate = 9600;
    serialPort.Open();
}

}
而Unity執行結果如下
https://ithelp.ithome.com.tw/upload/images/20180519/20109980LKoSUrci2E.jpg

上網爬文了很多人的寫法,可是結果依然存取被拒
有高手可以幫幫忙嗎~~~~謝謝!!!!!

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
sfc507
iT邦新手 4 級 ‧ 2018-05-21 10:38:39
最佳解答

有兩個方向可以去檢查

  1. 你有開Serial Monitor嗎?
    如果有開啟的話,Serial Port會被占用,
    會導致存取被拒。

  2. 檢查裝置管理員的Arduino (COM port)是否選對

uredocm iT邦新手 5 級 ‧ 2018-05-21 23:51:42 檢舉

真的是Serial Monitor的問題
非常感謝~~~~~~~~~~~~~~~~

sfc507 iT邦新手 4 級 ‧ 2018-05-22 08:16:14 檢舉

不會~ 有幫到你就好

哈,我從前也是死在 Serial monitor 手裡

我要發表回答

立即登入回答