Search Results

by hulaomr
Mon Sep 23, 2019 6:40 am
Forum: General
Topic: Deployment procedure suggestion
Replies: 1
Views: 7059

Re: Deployment procedure suggestion

Hello,
Any suggestion or reference to similar situations is appreciated.
Thanks!
by hulaomr
Wed Sep 18, 2019 6:19 pm
Forum: General
Topic: Deployment procedure suggestion
Replies: 1
Views: 7059

Deployment procedure suggestion

Hello, We are using Phidgets sensor during testing in multiples stations or computers. Please, may I know what is the suggested procedure for deployment the testing applications? Usually, we get errors as the pictures attached, which the testers cannot solve, usually when a new PC is added to the te...
by hulaomr
Fri Oct 19, 2018 6:28 pm
Forum: C/C++
Topic: 1048 fail getTemperature
Replies: 8
Views: 20993

Re: 1048 fail getTemperature

Hi Fraser, any thought or suggestion regarding this situation? Thanks
by hulaomr
Thu Oct 18, 2018 8:12 pm
Forum: C/C++
Topic: 1048 fail getTemperature
Replies: 8
Views: 20993

Re: 1048 fail getTemperature

opening, polling and closing them every 1s-5s
by hulaomr
Thu Oct 18, 2018 3:07 am
Forum: C/C++
Topic: 1048 fail getTemperature
Replies: 8
Views: 20993

Re: 1048 fail getTemperature

Thanks mparadis. I understand your concerns and thanks for pointing out those. Currently, I'm recording the temperature with a sampling time of 1 sec or more, which is not important the accuracy in this case. I would like to take this conversation and ask you about a situation, which happens sometim...
by hulaomr
Mon Oct 15, 2018 4:53 pm
Forum: C/C++
Topic: 1048 fail getTemperature
Replies: 8
Views: 20993

Re: 1048 fail getTemperature

Thanks for your reply and suggestion. That fix the issue. In my system the needed time is ~27ms to get the first correct value after open. I will update the loop as below: for(int i = 0; i < PHIDGET_1040_CHANNELS;) { prc = PhidgetTemperatureSensor_getTemperature(channels[i], &temperature[i]); if...
by hulaomr
Mon Oct 15, 2018 8:26 am
Forum: C/C++
Topic: 1048 fail getTemperature
Replies: 8
Views: 20993

1048 fail getTemperature

Hello, I'm trying to read the temperature in the 5 channels (0 to 4) of an 1048 device. Below the code: int serial = atoi(option1); int timeout = atoi(option2); #define PHIDGET_1040_CHANNELS 5 PhidgetTemperatureSensorHandle channels[PHIDGET_1040_CHANNELS]; PhidgetReturnCode prc = EPHIDGET_OK; static...