element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Sensors
  • Technologies
  • More
Sensors
Sensor Forum How to use pressure sensor (Honeywell NBPMLNN060PGUNV)
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Sensors to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 8 replies
  • Answers 1 answer
  • Subscribers 343 subscribers
  • Views 1003 views
  • Users 0 members are here
Related

How to use pressure sensor (Honeywell NBPMLNN060PGUNV)

Former Member
Former Member over 12 years ago

I have acquired a 0-60psi pressure sensor, namely the NBPMLNN060PGUNV (nr. 2146011 from Farnell).

According to the datasheet sensitivity of the device should typically be 21mV/V/Full range. Essentially I figured that I would be able to get a ~100mV output

difference from the device - if connected to a 5V supply - measured between pins 2 and 4 (21mV * 5V = 105mV).

But when I connect the sensor to the supply, the output voltage is only 4mV, and decreasing when I increase the pressure.

When output voltage reaches 0, nothing else happens even if I increase the pressure further. Needless to say, this behaviour seems a bit peculiar to me.

 

Can anyone verify if this behaviour is correct? Because sensing on a voltage of only 4mV or less is rather difficult in my application.

 

For testing purposes, if I up the supply voltage to 10V, the output voltage also doubles (~9mV). But it is still a very small voltage difference to work with.

Am I doing something wrong or do I need to add a differential amplifier circuit to get higher voltage differences?

 

Thank you for your time.


Regards,

David Larsen

AKJ Inventions ApS.

  • Sign in to reply
  • Cancel
Parents
  • himanshuws
    0 himanshuws over 11 years ago

    Dear all,

     

     

    I am trying to get the pressure readings from the NBPDLNN030PAUNV. Could someone please let me know what logic/code should I use to obtain the pressure. Also, which pin to use to get the pressure readings I mean Vout- or Vout+ . I am using an arduino board and trying to take the pressure reading from both Vout- and Vout+ separately using the logic

     

     

    const float Null = 0.00; // Null VDC

      const float Sensitivity = 21.0;  // Sensitivity

      pressure = analogRead(ADC_HONEYWELL);

      pressureVDC = (float)pressure * 0.0048828125; // (5/1024 = 0.0048828125)

      pressureVDC = pressureVDC - Null;

      pressurePSI = pressureVDC / Sensitivity * 1000;

     

     

    None of the pin is giving me correct readings. Please let me know how should I write a code to obtain correct pressure readings. I have also searched on the internet but could not get any details about the code to get the pressure.Do I need to connect the Vout- and Vout+ pins some how and then take the pressure reading or do I need to include both Vout- and Vout+  in some logic to find the correct pressure readings.

     

     

    I am novice to sensors/automation/electronics. Could someone please suggest me a good blog/tutorial/book which I can follow to get started in this field.

     

     

    Waiting for your reply!!

     

     

    Regards,

    Himanshu

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • himanshuws
    0 himanshuws over 11 years ago

    Dear all,

     

     

    I am trying to get the pressure readings from the NBPDLNN030PAUNV. Could someone please let me know what logic/code should I use to obtain the pressure. Also, which pin to use to get the pressure readings I mean Vout- or Vout+ . I am using an arduino board and trying to take the pressure reading from both Vout- and Vout+ separately using the logic

     

     

    const float Null = 0.00; // Null VDC

      const float Sensitivity = 21.0;  // Sensitivity

      pressure = analogRead(ADC_HONEYWELL);

      pressureVDC = (float)pressure * 0.0048828125; // (5/1024 = 0.0048828125)

      pressureVDC = pressureVDC - Null;

      pressurePSI = pressureVDC / Sensitivity * 1000;

     

     

    None of the pin is giving me correct readings. Please let me know how should I write a code to obtain correct pressure readings. I have also searched on the internet but could not get any details about the code to get the pressure.Do I need to connect the Vout- and Vout+ pins some how and then take the pressure reading or do I need to include both Vout- and Vout+  in some logic to find the correct pressure readings.

     

     

    I am novice to sensors/automation/electronics. Could someone please suggest me a good blog/tutorial/book which I can follow to get started in this field.

     

     

    Waiting for your reply!!

     

     

    Regards,

    Himanshu

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube