Page 1 of 1

MSP6907-ND line pressure sensor

Posted: Mon Jun 29, 2009 9:06 pm
by joe
Looking through the GPIO docs I see a reference to a digikey MSP6907-ND sensor used for line pressure measurement.

Reviewing the Digikey datasheet I am unable to find any kind of pressure/voltage reference.

Anybody have any information on this sensor voltage/pressure?? Will there be an MSP6907-ND.INC in the code??


Thanks,
Joe

Re: MSP6907-ND line pressure sensor

Posted: Tue Jun 30, 2009 7:28 am
by Bernard Fife
Joe,

The output voltage is a simple ratio of the input line pressure over the 0.5 to 4.5 Volt range (when used with a 5 Volt supply).

Because of the linear output, the ADC count to pressure conversion could have been handled in the code with a simple equation, but instead the linefactor.inc file is used in the code as an ADC count to pressure look-up table instead (attached below) to make it easier for users to add non-linear sensors (like additional temperature sensors, etc.) of their choice to the code.

The code also has the option to report the ADC count directly (to MT/TS) where it can be converted using equations in the INI file, which would mean you wouldn't have to re-compile the code when changing the input device.

Lance.

Re: MSP6907-ND line pressure sensor

Posted: Tue Jun 30, 2009 11:22 am
by joe
Lance,

Thanks for the reply- Thats what I was looking for.

Joe