I copied an example program from https://www.phidgets.com/?view=api, but I cannot get it to run: Example code from method open(): import com.phidget22.*; class Example { public static void main(String[] args) { try { VoltageInput ch = new VoltageInput(); ch.open(); ch.close(); } catch (PhidgetExcept...