OS: Mac OS Monterey
V. 12.4
Processing Ide version 4.0b8
Issue: ON Processing 4.0b8 - “Serial.list()” - Error: UnsatisfiedLinkError: Could not load the jssc library: Couldn’t load library library jssc
import processing.serial.*;
Serial myPort;
void setup(){
printArray(Serial.list());
myPort = new Serial(this, Serial.list()[0], 9600);
}
--------------------------------
I have verified that the error is generated by the “Serial.list()” method.
The problem occurs in Processing Ide version 4.0b8.
On Processing 4.0b7 there are no problems and everything works at its best!
Any suggestions?