with my limited english I'll try to explain my question :)
I have an Arduino with Ethernet Shield and a working Processing Application, which communicates with the Arduino.
The Arduino sends via client.write() a string to Processing and processing splits the String into values which will be used.
So far everything is working.
But I want to add the Processing visualization into a network window(e.g. i type "http://123.123.123.123" into my browser and then see the visualization).
I have a problem with the serial connection, after I'm exporting my Processing sketch.
If i click on "run" in the processing IDE, it runs perfectly but if I start the "sketch.jar" file ,nothing happens. If i open the "index.html" file, the place for the applet is blank ...
This is just a simple "Click green, LED on, Click red, LED off" program.
if (mousePressed) { a = 1; port.write(a); } } if (mouseX>=125) { if (mousePressed) { a = 0; port.write(a); }
} }
Can somebody help me to solve this problem? I searched for like three hours but can't find anything. Just people who have the same problem but never got an answer :(