2008年10月6日 星期一

Arduino 與 Processing 之互聯

主要原理:

利用 Serial Port 作連結

Processing_handbook.pdf 之 Page 650, Page 653

Processing 程式 內之

port=new Serial(this, 9600)

需 改為

println(Serial.list());
String portName = Serial.list()[0];
port = new Serial(this, portName, 9600);

其中 0 須視使用的 com port number 來決定

沒有留言: