First page
Back
Continue
Last page
Overview
Graphics
PC與Arduino用Serial Port通訊--Processing
依靠Serial套件 import processing.serial.*;
初始化用 myPort = new Serial(this, "COM3", 115200);
輸出用 myPort.write(outString);
輸入用 serialEvent 與 p.readString()
參考ps.pde