0

我正在使用处理库,我想用它创建一个虚拟串行端口,并且通过其他读取,有很多读取串行端口的示例,但我没有找到如何打开串行端口,我该如何做到这一点。

4

1 回答 1

1

从您引用的链接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);
于 2012-09-11T19:18:26.047 回答