Search Results

by VytautasDV
Mon Sep 04, 2017 10:07 am
Forum: Java
Topic: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?
Replies: 11
Views: 30360

Re: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?

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.
by VytautasDV
Fri Jul 07, 2017 9:33 am
Forum: Java
Topic: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?
Replies: 11
Views: 30360

Re: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?

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;...
by VytautasDV
Fri Jul 07, 2017 9:13 am
Forum: Java
Topic: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?
Replies: 11
Views: 30360

Re: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?

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...
by VytautasDV
Fri Jul 07, 2017 8:50 am
Forum: Java
Topic: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?
Replies: 11
Views: 30360

Re: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?

Example please.
by VytautasDV
Fri Jul 07, 2017 8:30 am
Forum: Java
Topic: JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?
Replies: 11
Views: 30360

JAVA Phidget22 API InterfaceKit 8/8/8 EXAMPLE?

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...