sorry if this is the wrong section, there isn't a section just for processing I don't believe.
but here is my issue/
I downloaded and tried the processing test app from the wiki. each pin input or output or servo move... worked good... I even did some charlieplexing with it.
but I am having issues with the sample code from the playground here
http://www.arduino.cc/playground/interfacing/processinghere is the code:
import processing.serial.*;
import cc.arduino.*;
Arduino arduino;
int ledPin = 13;
void setup()
{
//println(Arduino.list());
arduino = new Arduino(this, Arduino.list()[0], 57600);
arduino.pinMode(ledPin, Arduino.OUTPUT);
}
void draw()
{
arduino.digitalWrite(ledPin, Arduino.HIGH);
delay(1000);
arduino.digitalWrite(ledPin, Arduino.LOW);
delay(1000);
}
//end code
________________________________and here is the error message________________________________
Stable Library
=========================================
Native lib Version = RXTX-2.1-7
Java lib Version = RXTX-2.1-7
Exception in thread "Animation Thread" java.lang.IllegalAccessError: tried to access class processing.core.PApplet$RegisteredMethods from class cc.arduino.Arduino$SerialProxy
at cc.arduino.Arduino$SerialProxy.<init>(Arduino.java:119)
at cc.arduino.Arduino.<init>(Arduino.java:168)
at sketch_121124a.setup(sketch_121124a.java:33)
at processing.core.PApplet.handleDraw(PApplet.java:2103)
at processing.core.PGraphicsJava2D.requestDraw(PGraphicsJava2D.java:190)
at processing.core.PApplet.run(PApplet.java:2006)
at java.lang.Thread.run(Thread.java:662)
after seeing this, I assumed there was some sort of java error so I updated java on my computer too.... but that did not help at all
any advice or help would be great
thanks in advance