Working with STM32 and Sensors: BMP180 pressure and temperature sensor

In this guide, we shall use STM32 to acquire data from BMP180 temperature and pressure sensor and display the results on OLED display.

In this guide, we shall cover the following:

  • BMP180 Sensor.
  • Connection with STM32.
  • Code.
  • Results.

1.1 BMP180 sensor:

What is Atmospheric Pressure and BMP 180 Atmospheric Pressure Sensor? BMP 180 atmospheric pressure sensor is a such type of sensor which is mainly used for measuring atmospheric pressure or biometric pressure. If we talk about pressure, then pressure is a force that effect on per unit area .The unit, which is commonly used for pressure is pound per square inch means when one pound force presses one square inch area then this pressure is called one psi. The SI unit of pressure is newton per square meter which is called  one pascal (Pa). There are so many situations when we measure the pressure but here we are only interested in atmospheric pressure. Atmospheric pressure is basically the force, whose effect is existed on all the surrounding things. Means, the weight of gases in atmosphere creates the atmospheric pressure.

BMP 180 Atmospheric Pressure Sensor
Figure 1 BMP 180 Atmospheric Pressure Sensor

For measuring the pressure of these gases atmospheric pressure sensor is used. It is a high precision low cost  sensing solution and especially designed for consumer applications such as weather forecast, sports devices ,GPS, computer peripherals, indoor navigation, hobby projects and vertical velocity indication etc. It can also be used as an altimeter because pressure is changed with altitude. It is easy to use and easy to solder on printed circuit board(PCB) as well as it has small size and consume less power. If it used as a temperature sensor then it is prefect sensor. It is easily available on market or online shop. A simple BMP 180 atmospheric pressure sensor is shown in figure 1

Pinout

Picture above shows the pinout of this sensor. It works on I2C communication protocol.  It consists of four pins as shown in table below:

PinsFunction
Vin ( Power supply pin )Connect 3.3 volts to this pin
GNDGND pin of power supply
SCL ( I2C clock pin )Connect with SCL pin of any microcontroller
SDA (I2C data pin )Connect with SDA pin of any microcontroller

1.2: BMP180 Applications:

  • Indoor navigation
  • GPS-enhancement for dead-reckoning, slope detection, etc.
  • Sport devices, e.g. altitude profile
  • Weather forecast
  • Vertical velocity indication (rise/sink speed)

1.3 Sensor Operation:

Sensor operation

The BMP180 comes as a fully calibrated, ready-to-use sensor module without the need for additional external circuitry. Pressure and temperature data are provided as 16 bit values, which, together with the stored cali- bration data, are used for temperature compensation on the external microcontroller. Data transfer can be performed via I2C or SPI interfaces.

2. Connection with STM32:

3. Code:

We start of creating a header file with name of bmp180.h

C

Now we can create the bmp180.c

We start off by including bmp180.h as following:

C

Another header files required as following:

C

Then we define some macros for the slave device:

C

From the datasheet, we need to read the calibration:

Since the start address is 0xAA, we can create a macro for that as following:

C

Since the calibration data is 11 variable of 16-bit, we can create an array to hold 22 byte as following:

C

variable to hold the calibration data as following:

C

variable to hold uncompensated temperature and pressure:

C

Variable to hold the data to be sent to the sensor:

C

Extra variables to hold the calculation:

C

A structure to hold the pressure and temperature values:

C

For initializing the sensor, we just need to read the calibration data and enable FPU in case if it is not enable as following:

C

Now we can update the sensor as following:

For reading the temperature:

C

For reading the pressure:

C

After we acquired the data, we can start calculating the temperature as following:

C

for pressure:

C

Hence, the entire update sensor function as following:

C

For getting the temperature and pressure:

C

In main.c:

C

You may download the project from here:

4. Results:

Happy coding 🙂

Add Comment

Your email address will not be published. Required fields are marked *