With the new barometric pressure sensor BMP388 from BOSCH Sensortec, this tiny board measures atmospheric pressure with a relative accuracy of only ± 8 Pa, enabling you to measure altitude with an accuracy of ± 0.66 meters! This a great improvement over the accuracy reached with the previous BMP280 pressure sensor (± 12 Pa, equivalent to ± 1.0 meters) and much better than the accuracy from the BME280 and BME680 environmental sensors (± 120 Pa). Since it enables very accurate altitude measurements, the BMP388 is well suited for drone applications.
Here are the boards main features:
The first step with the BMP388 High Accuracy Sensor is to solder the 6 pin header that comes along with the board. The easiest way to solder the board is to insert the header into a breadboard (long pins down) and solder the short pins to the board.
Connecting the BMP388 on the I2C bus is very easy. The first step is to connect the board to the power supply.
Great! Now we need to connect the sensor to the I2C bus. The I2C communication uses basically two wires. The clock signal is generated by the Arduino and transferred to the sensor through the SCL line. The Arduino can send commands to the sensor using the SDA line. Just as well, all data from the sensor goes back to the Arduino through the SDA line. Because of that, the SDA line is bidirectional.
We can also communicate with the BMP388 sensor using the SPI protocol. Just like before, the first step is to connect the board to a power supply.
Unlike the I2C protocol, the SPI communication uses 4 different lines. All data from the sensor is transferred back to the Arduino through the SDO line (Serial Data Output), while all commands from the Arduino are transferred through the SDI (Serial Data Input) line. The clock signal is generated from the Arduino and sent through the SCK line (Serial Clock). Finally, the CS or Chip Select line is used to tell the sensor when the communication is starting or ending.
Not sure where the ICSP header is located? On the Arduino Uno it is the header on the far side of the board, close to the microcontroller.
We can also use the SPI communication without using the ICSP header, using regular digital pins instead. In this case, the communication is called Software-SPI.
Although there is currently no Arduino Library from BlueDot available for this sensor, you can read the BMP388 using this great library written by Adafruit. You can download and install the library directly from the Arduino IDE. Just open the Arduino IDE and go to Sketch > Include Library > Manage Libraries... and search for the Adafruit BMP388 Library on the Library Manager. You can find this library under the name "Adafruit BMPXX Library".
Alternatively, you can download the latest version of the library from their Github repository.
xkcd.com
After installing the library we can open an example sketch. Just go to File > Examples > Adafruit BMP3XX Library and open the sketch bmp3xx_simpletest.
The first step using this sketch is defining the communication protocol. Depending on how you wired your board, you can choose between I2C, Hardware SPI and Software SPI. The I2C mode is the default setup.
Adafruit_BMP3XX bmp; // I2C //Adafruit_BMP3XX bmp(BMP_CS); // hardware SPI //Adafruit_BMP3XX bmp(BMP_CS, BMP_MOSI, BMP_MISO, BMP_SCK);
If you are using the Hardware SPI mode, then you need to write into the program, which digital pin is connected to the CS pin of the BMP388 sensor. If you are using the Software SPI mode, then you also need to define digital pins for the MISO (SDO), MOSI (SDI) and SCK pins. These can be defined at the very beginning of the sketch.
#define BMP_SCK 13
#define BMP_MISO 12
#define BMP_MOSI 11
#define BMP_CS 10
This is actually all you need to do before running the program.
//Set up oversampling and filter initialization bmp.setTemperatureOversampling(BMP3_OVERSAMPLING_8X); bmp.setPressureOversampling(BMP3_OVERSAMPLING_4X); bmp.setIIRFilterCoeff(BMP3_IIR_FILTER_COEFF_3); //bmp.setOutputDataRate(BMP3_ODR_50_HZ);
Now you are ready to run the sketch.
xkcd.com
A 3D model of the BlueDot BMP388 board is available as a STEP file (click here to download). A STEP file is a CAD file format widely used for exchanging CAD files between companies and can be easily read by most (if not all) CAD software applications.
You can also view 3D models online without installing any software on your computer. The images below were taken using Autodesk Viewer, a online, free to use tool from Autodesk. It does require a registration at Autodesk, but it is worth it!
xkcd.com