I can't seem to get the serial port to see anything in processing. Even a simple sketch like this:
import processing.serial.*;
Serial myPort; // Create object from Serial class
int val; // Data received from the serial port
void setup()
{
println(Serial.list());
}
will not return any information. I'm running an arduino over USB, on ubuntu 10.10. The arduino connects just fine using the arduino software, over port /dev/ttyACM1. Why can't I see this port in processing with Serial.list()?
UPDATE: I've also tried manually entering "/dev/ttyACM1"