Formula changes for Phidgets (1127, 1133, and others)
Posted: Wed Sep 13, 2017 7:45 pm
A few months ago I started incorporating Phidges into LtSense, a Python app for polling data from environmental sensors. I looked through the data sheets at the time and pulled the following formulas for the sensor types I ordered:
I was showing this to a friend of mine and where I got the formulas and I noticed the ones on the product pages had changed. I first I thought I had just typed these in wrong, but all three of them were wrong. When I started searching for the original formulas, I found pages like the following under legacy support:
https://www.phidgets.com/docs21/1133_Us ... e#Formulas
So I just want to confirm, were the formulas on all the original data sheets incorrect and the ones currently in the product descriptions the right ones? They look to be for the same products (same model and revision numbers). If the formulas were incorrect, how did this happen? Where was the quality control?
Code: Select all
'1127': {'type': 'Light',
'units': 'lux',
'data': lambda x: x},
# Sound Sensor
'1133': {'type': 'Sound',
'units': 'dB',
'data': lambda x: 16.801 * math.log(x) + 9.872},
# Absolute Air Pressure Sensor (20-400 kPa)
'1140': {'type': 'Air Pressure',
'units': 'kPa',
'data': lambda x: (x / 2.421) + 3.478}
https://www.phidgets.com/docs21/1133_Us ... e#Formulas
So I just want to confirm, were the formulas on all the original data sheets incorrect and the ones currently in the product descriptions the right ones? They look to be for the same products (same model and revision numbers). If the formulas were incorrect, how did this happen? Where was the quality control?