Page 1 of 1

Phidget Bridge Control: how to save data interval settings?

Posted: Fri Sep 24, 2021 10:24 am
by cheister
Hi,

I want to lower the interval to 1000ms, but the control does not save the values for neither the trigger nor the interval although I click 'set'. How can I save the values?

Also the slider of the interval invalid values like 4000 and throws an error that only values between 8 and 1000ms are allowed. Not sure if this is a bug or depending on the connected sensor, load cells in my case.

Many Thanks, C.

Re: Phidget Bridge Control: how to save data interval settings?

Posted: Fri Sep 24, 2021 3:22 pm
by mparadis
There is no way to set a new default for the Phidget control panel- it's simply meant to be a diagnostic tool to make sure your Phidgets are working.

If you use your own program, you can set dataInterval to whatever you want in the attach handler. If you know how to use Visual Studio, you can download the C# example for the VoltageRatioInput channel, which is identical to the control panel example. Then you can go in and change the default in the attach handler.

The slider going past 1000 is a bug- I've logged it in our system so it'll get fixed.

Re: Phidget Bridge Control: how to save data interval settings?

Posted: Sun Sep 26, 2021 1:19 am
by cheister
Many thanks and good to know, I will checkout the c# example.