After a day of trying, I am unable to get Eclipse to recognize any serial messages. Using jssc I get the exception, “Port busy”. With jSerialComm I am unable to open the port. With the Processing serial library, nothing happens. I can get communication between my Uno and a Processing sketch no problem, its just Eclipse cannot even open the ports…The software I am writing is using the Processing library as a PApplet, etc on a Windows 7, 64-bit machine.
thank you for any help
//this is all the standard stuff..
...
import processing.serial.*;
...
public class Project extends PApplet {
...
Serial port;
...
public static void main(String[] args) {
PApplet.main("Project");
}
public void settings() {
...
}
public void setup() {
...
println("available serial ports:");
println((Object[])Serial.list());
if (Serial.list().length > ))
port = new Serial(this, Serial.list()[0}, 9600);
.....
}
}