Freescale Semiconductor Mpx 2010 Dp Special Differential Pressure Sensor 0 10 Kpa 10 16 Vdc
Rs. 649.00 Rs. 740.00
- Brand: https://www.nxp.com/part/MPX2010GP#/
- Product Code: SEN-PRESSURE
- SKU -
- Availability: 2-3 Days
- Price in reward points: 3
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
Product Information | |
Pressure Type | Differential |
Operating Pressure Min | 0kPa |
Operating Pressure Max | 10kPa |
Supply Voltage Min | 10V |
Supply Voltage Max | 16V |
Sensor Case Style | SIP |
No. of Pins | 4 |
Sensitivity, V/P | 2.5mV/kPa |
Operating Temperature Min | -40°C |
Operating Temperature Max | 125°C |
Packaging | Each |
MSL: | |
SVHC | No SVHC (16-Jun-2014) |
Connection Size | 4.928mm |
Operating Pressure Range | 0Pa to 10kPa |
Operating Temperature Range | -40°C to +125°C |
Supply Current | 6mA |
Supply Voltage Range | 10V to 16V DC |
OVERVIEW:
-Temperature Compensated over 0°C to +85°C
-Ratiometric to Supply Voltage
-Differential and Gauge Options
-Available in Easy-to-Use Tape & Reel
PACKAGE INCLUDES:
1 PCS x Freescale Semiconductor Mpx 2010 Dp Special Differential Pressure Sensor 0 10 Kpa 10-16 Vdc
https://www.nxp.com/part/MPX2010GP#/
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.instructables.com/How-to-Read-MPX5010-Differential-Pressure-Sensor-W/
/*
Darren Lewis calculated pressure readings MPX5010 baed on datasheet
datasheet: https://docs.rs-online.com/9979/0900766b8138443c.pdf
my website: http://darrenlewismechatronics.co.uk/
*/
const float ADC_mV = 4.8828125; // convesion multiplier from Arduino ADC value to voltage in mV
const float SensorOffset = 200.0; // in mV taken from datasheet
const float sensitivity = 4.413; // in mV/mmH2O taken from datasheet
const float mmh2O_cmH2O = 10; // divide by this figure to convert mmH2O to cmH2O
const float mmh2O_kpa = 0.00981; // convesion multiplier from mmH2O to kPa
void setup() {
Serial.begin(9600);
}
void loop() {
// ((sensorValue in mV -sensorOffset)/sensitivity in mV/mmH2O)*kPa conversion constant
//float sensorValue = ((analogRead(A0) * ADC_mV - SensorOffset) / sensitivity * mmh2O_kpa); // result in kPa
float sensorValue = (analogRead(A0) * ADC_mV - SensorOffset) / sensitivity / mmh2O_cmH2O; // result in cmH2O
Serial.print(millis());
Serial.print(" , ");
Serial.println(sensorValue, 2);
// using serial print format above, you can copy your data from the terminal,
// paste it into NotePad app, than save as a .CSV file which can be opened in Excel
}
15 days