I think so, because you use DigitalInput() method and not VoltageInput().
I myself never tested digital inputs. Never had a chance. I would suggest if you have the kit just to test it.
Finally, thank you. So in summary it would look like this? import com.phidget22.*; public class VoltageInputExample { public static void main(String[] args) throws Exception { VoltageRatioInput ch = new VoltageRatioInput(); ch.setDeviceSerialNumber(283033); ch.setChannel(3); ch.open(5000); double x;...
I want to get into phidgets programming and I cant wrap my head around the examples. Lets theoretically take interface kit 8/8/8 and precision light sensor, i want to connect light sensor to analog port 3 and just read data without all the event listeners. So theoretically i need to specify interfac...
I'm sorry I have to do this, but API and examples are complete waste. Is it just me or what? If anyone could post example of 8/8/8 interface kit i would appreciate. It would be nice if the example had: code for selecting specific kit if the whole system had more then one kit (i assume it is done wit...