Question for a Newbie
in
Core Library Questions
•
10 months ago
Hello all,
I am very new at processing, I am trying to run the most basics of program that I found somewhere on the website :
I am very new at processing, I am trying to run the most basics of program that I found somewhere on the website :
- // Example by Tom Igoe
import processing.Serial.*;
// The serial port:
Serial myPort;
// List all the available serial ports:
println(Serial.list());
// Open the port you are using at the rate you want:
myPort = new Serial(this, Serial.list()[0], 9600);
// Send a capital A out the serial port:
myPort.write(65);
I get the following error
No library found for processing.Serial
As of release 1.0, librairies must be installed in a folder named "librairies" inside the sketchbook
and despite that I have copied the Serial folder in it.
I am running v.1.5.1 32bit on a 64bit machine
Thank you
M
No library found for processing.Serial
As of release 1.0, librairies must be installed in a folder named "librairies" inside the sketchbook
and despite that I have copied the Serial folder in it.
I am running v.1.5.1 32bit on a 64bit machine
Thank you
M
1