Search Results

by jdecoux
Mon Nov 04, 2024 3:57 pm
Forum: All Other Phidgets
Topic: Unreliable temps with multiple TMP1101_1 phidgets
Replies: 4
Views: 1463

Re: Unreliable temps with multiple TMP1101_1 phidgets

When using a TMP1101, it is important to ensure the thermocouples you are using are electrically isolated from each other on the sensing end (not touching each other or connected metal surfaces)

Do you see this issue when using individual, separate thermocouples on each TMP1101?
by jdecoux
Tue Oct 01, 2024 8:39 am
Forum: General
Topic: MOT0110 magnetometer calibration curiosity
Replies: 2
Views: 8344

Re: MOT0110 magnetometer calibration curiosity

Generally more is better, but there is an upper limit to how much additional benefit you gain once you cover most of the sphere or circle, depending on calibration type. Note that calibration is only really effective if the sensor is moving with the machine/assembly it will be attached to, and will ...
by jdecoux
Tue Oct 01, 2024 8:30 am
Forum: General
Topic: MOT0110_0 Magnetometer Calibration
Replies: 7
Views: 5775

Re: MOT0110_0 Magnetometer Calibration

Thanks for following up! We didn't respond as it sounded like your issue had been resolved. However, you may be interested to know that your post did inspire us to look into localizing numbers in text fields in the Control Panel to ensure stability regardless of the operating system's language setti...
by jdecoux
Fri Sep 13, 2024 11:18 am
Forum: General
Topic: MOT0110_0 Magnetometer Calibration
Replies: 7
Views: 5775

Re: MOT0110_0 Magnetometer Calibration

The Spatial sample in the Phidget Control Panel is also crashing for you? That seems particularly unusual. Both magnetometer calibration and the Spatial sample are stable when I run them using that version. For completeness' sake, what firmware version are you running on the MOT0110? You can find th...
by jdecoux
Thu Aug 29, 2024 10:07 am
Forum: Python
Topic: Problem reading voltage ratio on Ubuntu 20
Replies: 8
Views: 10849

Re: Problem reading voltage ratio on Ubuntu 20

What is the text output of the program if you run this code, specifically? from Phidget22.Phidget import * from Phidget22.Devices.VoltageRatioInput import * import time def onVoltageRatioChange(self, voltageRatio): print("VoltageRatio: " + str(voltageRatio)) def onError(self, code, descrip...
by jdecoux
Wed Aug 28, 2024 4:11 pm
Forum: Python
Topic: Problem reading voltage ratio on Ubuntu 20
Replies: 8
Views: 10849

Re: Problem reading voltage ratio on Ubuntu 20

When you run the example, do you see a set of changing voltage ratios? Alternately, if you check the "Error Event Handler" box, do you see a set of error messages? You can also try lowering the gain of the bridge input to see if the value is out of range for the default (highest) gain mode.
by jdecoux
Wed Aug 28, 2024 3:59 pm
Forum: Python
Topic: Problem reading voltage ratio on Ubuntu 20
Replies: 8
Views: 10849

Re: Problem reading voltage ratio on Ubuntu 20

What do you see if you try and run the code sample for the device? In your case I recommend checking the "Error Event Handler" box in the sample generator, to see if the device is actively reporting error codes. And I'm sure you've already checked, but I also recommend making sure the conn...
by jdecoux
Wed Aug 28, 2024 2:26 pm
Forum: Python
Topic: Problem reading voltage ratio on Ubuntu 20
Replies: 8
Views: 10849

Re: Problem reading voltage ratio on Ubuntu 20

How much time are you leaving between opening the Phidget and reading it?

Some Phidgets can take 100-500ms to initialize before they report their first valid data.
by jdecoux
Tue Aug 06, 2024 12:16 pm
Forum: InterfaceKits
Topic: PhidgetInterfaceKit 8/8/8 1018_2
Replies: 1
Views: 7411

Re: PhidgetInterfaceKit 8/8/8 1018_2

A returned value of 2 from PhidgetDigitalInput_getState() is a signifier for "Unknown". This typically occurs if you try and poll the value too soon after opening the device, before it has a chance to report its actual state. You can also check the return code [code = PhidgetDigitalInput_g...
by jdecoux
Tue Jul 16, 2024 1:09 pm
Forum: C#.NET
Topic: Unity does not attach sensor
Replies: 2
Views: 11524

Re: Unity does not attach sensor

Unless Unity is running on the SBC itself (unlikely), you will need to add a network connection to your program. The easiest way to get code for this is to click the "Remote (Network)" box in the code generator. Then you can also (optionally) add the IP address or hostname in the box that ...