We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello,
I was wondering if there is a way to disconnect the Arduino's serial port similar to how one can disconnect other serial ports.
For instance for a Serial myPort; where myPort = new Serial(this, Serial.list()[0], 9600); I can close this port with myPort.stop();
Unforunately, for a Arduino arduino; where arduino = new Arduino(this, Arduino.list()[0], 9600); arduino.stop() is not a usable function.
Is there a work around for this? Or would I have to modify Processing's Arduino library?
I appreciate your help.