Wish List 0

Mps20N0040D D 40Kpa Air Pressure Sensor

Rs. 78.00 Rs. 90.00

  • Product Code: SEN-PRESSURE
  • SKU - SE-1462
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
Features:
-This DIP air pressure sensor is suitable for biomedical, meteorology and other fields. The core part is a pressure sensor chip which is made by the MEMS pressure technology.
-With a wide applicable temperature range.
-Easy to use and install.

Fits for the following types:
-Automobile: tire pressure gauge, vehicle-mounted air pump, the MAP sensors, diagnostic equipment, automotive sensors.
-Industry: air brake switch, portable pressure gauge, such as a digital pressure gauge, environment monitor.
-Medical equipment: patient monitoring and diagnostic equipment, such as blood pressure monitor, medical instrument, and monitor.

Applications:
-Fits for tire pressure gauge,vehicle-mounted air pump, the MAP sensors, diagnostic equipment, automotive sensors; air brake switch, portable pressure gauges, such as digital pressure gauge, environment monitor; patient monitoring and diagnostic equipment etc
-Size:1x0.9cm/0.39x0.35inch
SPECIFICATIONS
Measuring medium              air
Measuring range               0-40kPa
Operating temperature range   -40 ℃ ~ + 125 ℃
Storage Temperature           -40℃ ~ + 150℃
Humidity                      (50% ± 10%) RH 
Ambient temperature           (25 ± 1) ℃
Medium temperature            (25 ± 1) ℃
Output impedance              4kΩ ~ 6kΩ
Zero output                   -15mV~+15mV
Hysteresis                    +-0.7%F.S.
Power supply                  ≤10V DC or ≤2.0mA DC
Insulation resistance         100MΩ,100VDC

-Measure the pressure range of 580 PSIG, 40KPaG-Power supply 5 VDC-Input impedance of 4 - 6 KΩ-The output impedance of 4 - 6 KΩ-Operating temperature -40 - 85 ° C -40 ° F - +185 ° F-Storage Temperature -40 - 125 ° C -40 ° the F - +257 ° F-Accessible media, clean, dry, non-corrosive gases-Bias voltage ± 25 mV-Full-scale output voltage 50 - 100 mV-Bridge Resistance to 4 - 6 KΩ-Linearity ± 0.3% F.S.-Hysteresis ± 0.7% F.S.-Bias Temperature coefficient ± 0.08% of F.S. / °c-Temperature coefficient of sensitivity -0.21 % FS/ °c

OVERVIEW
Maximum pressure    40kpa (differential pressure)
Output              mV signal
Electricity supply  5VDC or constant current 1Ma
Linear accuracy     0.25% FS

PACKAGE INCLUDES:

1 PCS x Mps20N0040D D 40Kpa Air Pressure Sensor


/*SOURCE CODE TAKEN FROM BELOW LINK

//https://makersportal.com/blog/2020/6/4/mps20n0040d-pressure-sensor-calibration-with-arduino

Pressure Measurements with the

MPS20N0040D Breakout Board

with the HX710B/HX711 ADC

5V Supply Voltage

 */

#include <Q2HX711.h>


const byte MPS_OUT_pin = 2; // OUT data pin

const byte MPS_SCK_pin = 3; // clock data pin

int avg_size = 10; // #pts to average over


Q2HX711 MPS20N0040D(MPS_OUT_pin, MPS_SCK_pin); // start comm with the HX710B


void setup() {

  Serial.begin(9600); // start the serial port

}


void loop() {

  float avg_val = 0.0; // variable for averaging

  for (int ii=0;ii<avg_size;ii++){

    avg_val += MPS20N0040D.read(); // add multiple ADC readings

    delay(50); // delay between readings

  }

  avg_val /= avg_size;

  Serial.println(avg_val,0); // print out the average

}

https://www.youtube.com/results?search_query=MPS20N0040D-D

15 days 

Write a review

Please login or register to review