Search Results

by sheppy
Thu Jul 25, 2019 4:03 pm
Forum: All Other Phidgets
Topic: Weighing Gas Bottle
Replies: 1
Views: 5916

Weighing Gas Bottle

I have PH and ORP sensors connected via a VINT Hub and USB to my Debian equipped home automation system and I would like to add weighing my gas bottle to the system. The bottle is currently suspended with a chain from a wall bracket, and I am thinking of adding an CZL301C Load Cell in stretch mode t...
by sheppy
Fri Dec 01, 2017 4:17 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

Re: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

I run 2 scripts as it was the easiest way to combine my newbie level of Python Skills with OpenHAB. I'm very happy to try something more efficient if you can point me in the right direction, I'd like to do as much work as possible in Python as it seems to run on a different CPU core to the 2 used by...
by sheppy
Fri Dec 01, 2017 2:37 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

Re: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

When the pool pump is on I run each script 30 seconds apart with an enforced timeout of 25 seconds. Usually each script terminates with a result after 21 seconds, so the system is idle for at least 8 seconds before it is queried again. The Network Server isn't running so nothing other than the 2 scr...
by sheppy
Thu Nov 30, 2017 3:18 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

Re: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

Thanks On Linux, I executed apt-get update & apt-get upgrade which seems to have changed the version. My setup queries each probe 10 times at 2 second intervals every minute and averages the results for each probe. Since upgrading to the latest version I get a "Phidget Exception 3: Timed Ou...
by sheppy
Wed Nov 29, 2017 2:06 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

Re: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

@Patrick where can I find the fix - I see only version 22 on the support page. Is the version still at 22 for the fixed version?
by sheppy
Tue Nov 14, 2017 1:48 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

Re: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

Thanks for the replies. I'll leave it with the error print statement commented out until the next release. Having used a PH and ORP probe for a few days now can I suggest making a few of the settings stick between sessions, and also maybe adding basic average readings to the sample code to try and c...
by sheppy
Mon Nov 13, 2017 6:53 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

Re: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

That didn't make any difference. I now have

ch.openWaitForAttachment(5000)
ch.setVoltageRange(7)

and the first result is

Error 4105 : Saturation Detected.
by sheppy
Sun Nov 12, 2017 2:37 pm
Forum: Linux
Topic: Server Excess Logging Problems
Replies: 2
Views: 5660

Re: Server Excess Logging Problems

I'll give that a try next time I use the server. Since writing the post I moved the query script onto the Pi that hosts the Phidgets, as the Network Server gave up serving requests after a period of time.
by sheppy
Sun Nov 12, 2017 2:31 pm
Forum: Python
Topic: BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error
Replies: 14
Views: 9349

BUG? ADP1000 / ORP Probe, Can't set Voltage Range before Saturation Error

I've got an ORP Probe connected to an ADP1000 and VINT Hub on a Raspberry Pi running Jessie. I query the probe using the Python Voltage input example. I have added "attached.setVoltageRange(7)" as the second item in the "attached" section of the example voltage input script to ch...