Introduction: Determining the Pressure and Altitude Using GY-68 BMP180 and Arduino

About: Passionate about electronics parts and tutorials. We're your go-to source for high-quality components and expert guidance. Join us on our journey of exploration and innovation in the world of electronics.

Overview

In many projects such as flying robots, weather stations, improving routing performance, sports and etc. measuring pressure and altitude is very important. In this tutorial, you’ll learn how to use the BMP180 sensor, which is one of the most commonly used sensors for measuring the pressure.

What You Will Learn

  • What the barometric pressure is.
  • What the BOSCH BMP180 pressure sensor is.
  • How to use the BOSCH BMP180 pressure sensor with Arduino.

Step 1: What Is the Barometric Pressure?

Barometric pressure or atmospheric pressure results from the weight of the air on the earth. This pressure is about 1 kg per square centimeter at the sea level.

There are several units to express the atmospheric pressure, that can easily be converted to each other. The SI unit for measuring the pressure is Pascal (Pa).

The barometric pressure has an approximately linear inverse ratio with the altitude from the sea level so if we measure the barometric pressure of a place, we can calculate the altitude from the sea level using a simple mathematical operation.

Step 2: GY-68 BOSCH BMP180 Pressure Sensor Features

One of the most common sensors for measuring the pressure and altitude is BOSCH BMP180. The most important features of this module are as follow:

  • Pressure measurement range of 300 to 1100hPa
  • -0.1hPa measuring accuracy for absolute pressure
  • 12hPa measuring accuracy for relative pressure
  • Low power consumption (5μA in standard mode and one sample per second)
  • Internal temperature sensor with a precision of 0.5 °C
  • Supporting I2C protocol for communication
  • Fully calibrated

Step 3: Required Materials

Hardware Components

Arduino UNO R3 *1

BOSH BMP180 *1

Jumper Wire *1

Software Apps

Arduino IDE *1

Step 4: How to Use GY-68 BMP180 Pressure Sensor With Arduino?

This sensor is available as a module for easy use. The main parts of the BMP180 sensor module are:

  • BMP180 sensor
  • A 3.3-volt regulator. This regulator lets you connect the module to 5V.
  • Required pull up resistors to communicate I2C properly

Step 5: Circuit

Download the BMP180_Breakout_Arduino_Library to use the BMP180 sensor module.

BMP180_Breakout_Arduino_Library

Step 6: Calculation of Absolute Pressure With Different Units and Altitude From the Sea Level

Let’s check the process of pressure and altitude calculation more accurately:

According to the above algorithm, first we start to calculate the temperature using startTemperature(), then we store the temperature in variable T using getTemperature(T). After that, we calculate the pressure with startPressure(3). The number 3 is the maximum resolution that can be changed between 0 and 3. using getPressure(P) we store the absolute pressure in variable P. The amount of this pressure is in hPa, which can be converted to different units according to the previous table. The absolute pressure changes with altitude. To remove the effect of the altitude on the calculated pressure, we should use the sealevel(P,ALTITUDE) function according to the altitude stored in the ALTITUDE variable, and store the measured value in an arbitrary variable, such as p0. Use altitude(P,p0) to calculate your altitude. This function calculates the altitude in the meter.

Note

that you can insert your altitude from the sea level for the ALTITUDE variable defined at the beginning of the code