处理打开虚拟串口

时间:2012-09-11 19:13:48

标签: java linux serial-port virtual processing

我正在使用processing lib并且我希望用它创建一个虚拟串口,并且使用oter read,有很多读取串口的例子,但我没有找到如何打开串口,我怎么能做这个。

1 个答案:

答案 0 :(得分: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);