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 に答える