0
我使用processing lib和我想創建一個虛擬串口用它,並與oter讀,有讀串口很多例子,但我沒有找到如何打開一個串口,如何我可以做到這一點。處理打開一個虛擬串口
我使用processing lib和我想創建一個虛擬串口用它,並與oter讀,有讀串口很多例子,但我沒有找到如何打開一個串口,如何我可以做到這一點。處理打開一個虛擬串口
從你提到的鏈接,http://www.processing.org/reference/libraries/serial/Serial.html:
// Example by Tom Igoe
import processing.serial.*;
// The serial port:
Serial myPort;
// List all the available serial ports:
println(Serial.list());
// Open the port you are using at the rate you want:
myPort = new Serial(this, Serial.list()[0], 9600);
// Send a capital A out the serial port:
myPort.write(65);
我越來越0端口Serial.list(),如果我打印Serial.list()的長度是從0 – ademar111190
聽起來像是你的庫ISN」 t在你的硬件上找到任何串口)這個API無法幫到你 - 這是一個操作系統/配置問題。 – paulsm4
明白,知道任何方式來檢查它是否正確? – ademar111190