MSP6907-ND line pressure sensor
MSP6907-ND line pressure sensor
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
-
- Posts: 1696
- Joined: Fri Apr 04, 2008 1:28 pm
Re: MSP6907-ND line pressure sensor
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.
- Attachments
-
- linefactor.zip
- (1.28 KiB) Downloaded 761 times
Re: MSP6907-ND line pressure sensor
Thanks for the reply- Thats what I was looking for.
Joe