Connecting To The Server To Fetch The WebPage Elements!!....
MXPlank.com MXMail Submit Research Thesis Electronics - MicroControllers Contact us QuantumDDX.com



Search The Site





MPX4115A pressure sensor interfacing with pic microcontroller – Digital Barometer



MPX4115A pressure sensor is a integrated on chip pressure sensor. It consists of piezoresistive transducer which converts pressure into dc voltage. It can measure pressure from 15 kilo pascal to 115 kilo pascals. And output of sensor ranges from 0.2 volt to 4.8 volt according to pressure applied to sensor.


Digital Barometer using pic microcontroller: In this post, you will learn how to interface MPX4115A pressure sensor with pic18f46k22 microcontroller? How to use MPX4115A pressure sensor to design digital Barometer? What are the features of MPX4115A pressure sensor? How MPX4115A pressure sensor works? How to measure output voltage of MPX4115A pressure sensor with the help of pic18f46k22 pic microcontroller and convert this measured voltage into pressure and display measured pressure value on liquid crystal display? Now lets start with basic introduction and working of MPX4115A pressure sensor which is necessary to understand. Before interfacing this pressure sensor with pic microcontroller, we should know how this sensor works and what is the output of this sensor?  you may also like to check these sensors interfacing posts with pic microcontroller:

  • temperature sensor interfacing with pic microcontroller
  • heart beat sensor
  • humidity sensor 
  • Light sensor
  • AC current sensor
  • AC voltage sensor

Table of Contents

Introduction to MPX4115A pressure sensor

MAX4115 pressure sensorMPX4115A pressure sensor is a integrated on chip pressure sensor. It consists of piezoresistive transducer which converts pressure into dc voltage.  It can measure pressure from 15 kilo pascal to 115 kilo pascals. And output of sensor ranges from 0.2 volt to 4.8 volt according to pressure applied to sensor.  Followings are the main feature of this sensor:

  • 1.5% maximum reading error over a wide range of temperature
  • It is suitable for digital systems, embedded systems and microcontroller based projects
  • It comes with a surface mount package.

Followings are the main applications of this sensor:

  • Automotive industry
  • engine control
  • weather stations
  • And many others

The internal block diagram of MPX4115A pressure sensor is shown below. It has three pins +5 volt input pin, ground pin and output pin and we measure the output voltage from this pin and convert it back in pressure using the formula which is given in data sheet. We provide pressure to a sensing element.  To design a microcontroller based barometer it is a very useful pressure sensor. MAX4115 pressure sensor block diagram

Graph below shows the relationship between output voltage and input pressure. It can easily observed that both has somehow linear relationship with each other and formula for voltage to pressure conversion is also given in the graph. MAX4115 pressure sensor output voltage and pressue graph

So according to above graph the minimum pressure we can measure with this sensor is 15kPa and maximum is 115Kpa.  Because below, 15KPa output voltage of sensor is zero and on above 115KPa output voltage remains constant.  So we can easily easily design digital barometer with the help of this pressure sensor. Because we already know that how to measure voltage with the help of pic18f46k22 microcontroller and by using above conversion formula we can easily convert voltage into pressure.  Formula below shows the relationship between output voltage of sensor and input pressure.

Vout = Vs x ((0.009 x P) – 0.095) ± Error

MPX4115A pressure sensor interfacing with pic microcontroller

In this project ,we are designing digital barometer using pic18f46k22 microcontroller. So now lets see how to connect MPX4115A pressure sensor with pic microcontroller.  To interface this sensor with pic microcontroller, we just need to connect output pin of MPX4115A pressure sensor with analog input pin of pic microcontroller as shown below. I have connected analog pin zero of pic18f46k22 with output pin of barometer sensor. I have also connected lcd with pic18f46k22 microcontroller to display measured value of pressure. If you don’t know how to interface LCD with pic microcontroller. Check this lcd interfacing with pic16f877a microcontroller article

So above simulation shows the measured value of pressure on LCD.

Code for pressure sensor interfacing with pic microcontroller

Code for pressure sensor interfacing with pic microcontroller is given below. Code is written using Mikro c for pic.

// LCD module connections
sbit LCD_RS at LATC0_bit;
sbit LCD_EN at LATC1_bit;
sbit LCD_D4 at LATC2_bit;
sbit LCD_D5 at LATC3_bit;
sbit LCD_D6 at LATC4_bit;
sbit LCD_D7 at LATC5_bit;

sbit LCD_RS_Direction at TRISC0_bit;
sbit LCD_EN_Direction at TRISC1_bit;
sbit LCD_D4_Direction at TRISC2_bit;
sbit LCD_D5_Direction at TRISC3_bit;
sbit LCD_D6_Direction at TRISC4_bit;
sbit LCD_D7_Direction at TRISC5_bit;
// End LCD module connections

unsigned int ADCResult=0;
float pressure;
unsigned char txt[15];

void main() {
 OSCCON=0x66; //Configure to use 8MHz internal oscillator.
 ANSELC=0X00;
 ANSELA=0XFF;
 TRISA.RA0 = 1; // Configure RA0 pin as input

ADC_Init(); // Initialize ADC

Lcd_Init(); // Initialize LCD
 Lcd_Cmd(_LCD_CLEAR); // Clear display
 Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off

Lcd_Out(1, 1, "microcontrollers"); // Display "StudentCompanion"
 Lcd_Out(2, 1, "lab.com"); // Display "Thermometer"
 Delay_ms(2000); // 2 Second delay
 Lcd_Cmd(_LCD_CLEAR); // Clear display

do {
 ADCResult = ADC_Read(0);
 pressure = (ADCResult*5.0)/1023;
 pressure = (pressure + 0.475)/0.0475;
 FloatToStr(pressure, txt);
 Lcd_Out(1, 1, "P = ");
 Lcd_Out_Cp(txt);
 Lcd_Out_Cp("KPa");

} while(1);

}
Categories PIC microcontroller projects, Pic Microcontroller posts