Wish List 0

Mpx10Dp Pressure Sensors 0Kpa To 10Kpa

Rs. 385.00 Rs. 443.00

The MPX10DP is a dual-port uncompensated silicon Pressure Sensor for environmental control systems and level indicators.

The MPX10 series silicon piezoresistive pressure sensor provides a very accurate and linear voltage output, directly proportional to the applied pressure.

This standard uncompensated sensor permits manufacturers to design and add their own external temperature compensation and signal conditioning networks.

Compensation techniques are simplified because of the predictability of NXP's single element strain gauge design.


Applications:

-Sensing & Instrumentation, Medical, Industrial, Robotics, Automation & Process Control

-Air Movement Control

-Environmental Control Systems

-Level Indicators

-Leak Detection

-Medical Instrumentation

-Industrial Controls

-Pneumatic Control Systems

-Robotics

SPECIFICATIONS
Pressure Type            Differential
Sensitivity, V/P         3.5mV/kPa
Operating Pressure       0kPa ~ 10kPa
Supply Voltage           3V - 6V DC
Sensor Case Style        SIP
No. of Pins              4Pins
Operating Temperature    -40°C to 125°C

OVERVIEW:

-Low Cost

-Patented Silicon Shear Stress Strain Gauge Design

-Ratiometric to Supply Voltage

-Easy to Use Chip Carrier Package Options

-Differential and Gauge Opti

PACKAGE INCLUDES:

1 PCS x Mpx10Dp Air Pressure Sensors 0Kpa To 10Kpa


//SOURCE CODE TAKEN FROM BELOW LINK

//https://circuits4you.com/2016/05/13/arduino-pressure-measurement/

/*

  Air Pressure Measurement usning MPX5010 or MPX5100 Pressure Sensor

  www.circuits4you.com

*/


const float SensorOffset = 102.0;

// the setup routine runs once when you press reset:

void setup() {

  // initialize serial communication at 9600 bits per second:

  Serial.begin(9600);

}


// the loop routine runs over and over again forever:

void loop() {

  // read the input on analog pin 0:

  float sensorValue = (analogRead(A0)-SensorOffset)/100.0; //Do maths for calibration

  // print out the value you read:

  Serial.print("Air Pressure: ");  

  Serial.print(sensorValue,2);

  Serial.println(" kPa");

  

  delay(1000);        // delay in between reads for stability

}

15 days 

Write a review

Please login or register to review