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?