64-bit library needed for processing?

Hello all,

I tried to get processing to read my usb port by following this tutorial:

But when I try to run the Processing code it says "serial does not run in 64-bit mode"

I then looked in my the Libraries folder of Processing, and I noticed that there wasn't any library for Windows64 bit.
Can I download this library somewhere? Or is there something else I'm doing wrong here?

With kind regards,

Azziplekkus

Ok, looks like the beta still has some bugs.

I downloaded the older, stable, version and it works :wink:

Although I get a new error now (this time it's a java error):

Exception in thread "Animation Thread" java.lang.ArrayIndexOutOfBoundsException: 2
	at sketch_120921a.setup(sketch_120921a.java:36)
	at processing.core.PApplet.handleDraw(Unknown Source)
	at processing.core.PApplet.run(Unknown Source)
	at java.lang.Thread.run(Thread.java:662)

anyone know what this means?

EDIT: I figured out this error popped up becouse I put "2" as serial port (becouse it starts counting from 0, and I use COM3).
But... It only counts COM ports IN USE, so COM1 = 0, and (in my case) COM3 = 1
This fixed the problem :wink:

I also figured out that processing gives an error if the port is currently being used (for example by the Arduino IDE serial monitor)

Just wanted to point these things out in case someone else encounters the same problems as I did^^