2012-09-11 64 views

回答

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); 
+0

我越來越0端口Serial.list(),如果我打印Serial.list()的長度是從0 – ademar111190

+0

聽起來像是你的庫ISN」 t在你的硬件上找到任何串口)這個API無法幫到你 - 這是一個操作系統/配置問題。 – paulsm4

+0

明白,知道任何方式來檢查它是否正確? – ademar111190