Mps20N0040D D 40Kpa Air Pressure Sensor
Rs. 78.00 Rs. 90.00
- Product Code: SEN-PRESSURE
- SKU -
- 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
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 |
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