Search Results

by zdm11
Mon Jul 31, 2017 2:18 pm
Forum: Python
Topic: Analog input sampling rate
Replies: 2
Views: 3954

Analog input sampling rate

Dear all, I'm using Phidget 8/8/8 board to acquire temperature and RH signal from a sensor. I would like to have a 10-second sampling interval, but I only can specify the interval as 1ms up to 1000ms by the statement-setDataInterval(). What I want is 10 second sampling rate. I had try to use time.sl...
by zdm11
Wed Jul 26, 2017 9:07 pm
Forum: Python
Topic: interfaceKit
Replies: 4
Views: 4569

Re: interfaceKit

mparadis wrote:I recommend having a look at our Python example code. Use the VoltageInput example, which uses event handlers to gather data rather than using getSensorValue (although getSensorValue should work if the channel is opened and attached properly).
Got it! :D Thank you for your time!
by zdm11
Tue Jul 25, 2017 2:45 pm
Forum: Python
Topic: interfaceKit
Replies: 4
Views: 4569

Re: interfaceKit

InterfaceKit is a Phidget21 object. If you're using Phidget22, you should use the VoltageInput or VoltageRatioInput object to represent the channel your sensor is connected to (see the API and select 1018_2 for a full list of methods for these objects). Once you've opened one of these channels you ...
by zdm11
Mon Jul 24, 2017 10:20 pm
Forum: Python
Topic: interfaceKit
Replies: 4
Views: 4569

interfaceKit

Need for help! :?: Description: I'm trying to get a voltage signal of a RH sensor from a phidget 1018 board by using the statement interfaceKit.getSensorValue(), but the IDLE says "NameError: name 'interfaceKit' is not defined". I did install phidget22 library manually. So I thought the re...