No Fun, No Gain.
有成就感的學習 有熱情的人生
日本 Tully's Coffee 松田公太之著作
從一杯咖啡開始
2008年10月29日 星期三
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 來決定
利用 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 來決定
訂閱:
文章 (Atom)