Using BMP280 based pressure and temperature sensors

The BMP280 based pressure and temperature sensors have an amazing accuracy for their price point (around 1$USD, 1Euro, 1GBP or cheaper!) and they are incredibly easy to connect up and use. Both I²C or SPI busses are usually supported. Below is the one similar to those that are readily available.

They usually come with header pins that need soldering, although local eBay sellers may offer soldered ones for a premium. For this tutorial I’m going to connect to the  I²C bus and use a OLED display for output.

If you want a video guide as well as this page then click below, however this guide has been updated but I’m unable to edit the video below without completely deleting it first. So the video will no not match the guide perfectly. The guide has in fact been simplified.

Connection Diagram
Just connect your device to the hardware I²C of your micro-controller of your choice, here’s my Nano set-up;

For other Arduino’s see this table of connection pins:

BMP280 ConnectionNano ConnectionPro-MicroUnoLeonardo
VCC5V5V5V5V
GNDGNDGNDGNDGND
SCLA53A5 (*)#3
SDAA42A4 (*)2

The code
To make this we need a library.  In the Arduino IDE open up the Library Manager (“Tools->Manage Libraries…”). In the search box type in “Adafruit bmp280” and only one result should return (at time of writing). Install this library..

Example Code
From the menu “File->Examples->Adafruit BMP280 Library->bmp280 test”.  Compile, upload and then open your serial monitor.  if you get the following output:

BMP280 test
Could not find a valid BMP280 sensor, check wiring!

The the most likely culprit (presuming wiring is correct) is that the  I²C address of your sensor is different than the one supplied by Adafruit. If you don’t get this issue and have something like this:

BMP280 test
Temperature = 25.60 *C
Pressure = 100585.72 Pa
Approx altitude = 61.73 m

then your sensor is being read fine and you can move onto the Height and Pressure section below.

Trouble-shooting the  I²C address
If you have wired everything correctly then the culprit is probably the I²C address of your sensor. Copy this code below (and upload) to scan the I²C addresses of all your devices attached to your Arduino.

This will result in a output on the serial monitor similar to that below:

I2C Scanner
Scanning…
I2C device found at address 0x76 !
done

So the BMP280 is address 0x76.  Yours may be different, follow the advice above this scanner code to enter this address into the example code.

Re-compile and upload the BMP280 demo code from above again. Hopefully this time you should have  a result like this:

BMP280 test
Temperature = 25.60 *C
Pressure = 100585.72 Pa
Approx altitude = 61.73 m

Height and Pressure
Pressure is returned in Pascals (Pascal is one of the many units of pressure) with the standard pressure  being 100,000 Pascals. The altitude is derived by knowing the air pressure at ground level. Air pressure is the result of all the air above it pressing down (just like the deeper you go in the sea the pressure increases due to the weight of water above this depth). The further you go up the less air there is above you. Knowing this a simple calculation can be made to calculate height above sea level based on the pressure measured. However air pressure varies around the world so the routine that calculates the height takes a Barometric Pressure reading for your local area, this is the line:

Serial.print(bmp.readAltitude(1013.25)); 

Just Google air pressure for where you live.

For an exercise, instead of adding the local area pressure you could pass in the current pressure (will need to convert from raw Pascals) and then it will show 0 meters when switched on and then measure height relative to the devices starting position and not relative to sea level.

Adding the OLED display
See this article on adding a display to an Arduino, once this has been done the following code will display the results on the screen.

For an exercise, instead of adding the local area pressure you could pass in the current pressure (will need to convert from raw Pascals) and then it will show 0 meters when switched on and then measure height relative to the devices starting position and not relative to sea level.

Enjoy and learn 🙂