All Projects → bolderflight → bme280

bolderflight / bme280

Licence: other
Arduino and CMake library for communicating with the Bosch Sensortec BME280 environmental sensor.

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to bme280

ublox
Arduino and CMake library for communicating with uBlox GPS receivers.
Stars: ✭ 89 (+323.81%)
Mutual labels:  drone, sensor, arduino-library, drones
sbus
Arduino and CMake library for communicating with SBUS receivers and servos.
Stars: ✭ 277 (+1219.05%)
Mutual labels:  drone, arduino-library, drones
BME680
Arduino Library to access the Bosch BME680 - temperature, pressure, humidity and gas sensor
Stars: ✭ 30 (+42.86%)
Mutual labels:  sensor, arduino-library, pressure
BMP180 Breakout Arduino Library
Arduino libraries for the BMP180 pressure sensor breakout board
Stars: ✭ 30 (+42.86%)
Mutual labels:  sensor, arduino-library, pressure-sensor
Bh1750
An Arduino library for the digital light sensor breakout boards containing the BH1750FVI IC
Stars: ✭ 173 (+723.81%)
Mutual labels:  sensor, arduino-library
Pzem 004t V30
Arduino library for the Updated PZEM-004T v3.0 Power and Energy meter
Stars: ✭ 78 (+271.43%)
Mutual labels:  sensor, arduino-library
source x
Open Source Giant FPV Racing Drone Frame
Stars: ✭ 19 (-9.52%)
Mutual labels:  drone, drones
hardware
PCB designs for the Waterloo Aerial Robotics Group
Stars: ✭ 42 (+100%)
Mutual labels:  drone, drones
Px4 Autopilot
PX4 Autopilot Software
Stars: ✭ 5,090 (+24138.1%)
Mutual labels:  drone, drones
Swarms
The ultimate node.js library for controlling Bitcraze Crazyflie 2.0 drones
Stars: ✭ 11 (-47.62%)
Mutual labels:  drone, drones
Imageprocessing
MicaSense RedEdge and Altum image processing tutorials
Stars: ✭ 139 (+561.9%)
Mutual labels:  drone, drones
Ultrasonic
Minimalist library for Ultrasonic Module HC-SR04, PING))) and Seeed SEN136B5B to Arduino
Stars: ✭ 77 (+266.67%)
Mutual labels:  sensor, arduino-library
arduino-sht
Repository for Sensirion humidity and temperature sensor support on Arduino
Stars: ✭ 43 (+104.76%)
Mutual labels:  sensor, arduino-library
SensorFusion
A simple implementation of some complex Sensor Fusion algorithms
Stars: ✭ 101 (+380.95%)
Mutual labels:  sensor, arduino-library
Gaas
Generalized Aviation: Open source autonomous aviation software platform, designed for fully autonomous drones and flying cars.
Stars: ✭ 1,377 (+6457.14%)
Mutual labels:  drone, drones
TLV493D-A1B6-3DMagnetic-Sensor
Library for the TLV493D-A1B6 3D magnetic sensor for Arduino.
Stars: ✭ 27 (+28.57%)
Mutual labels:  sensor, arduino-library
Adafruit TSL2591 Library
This is an Arduino library for the TSL2591 digital luminosity (light) sensors.
Stars: ✭ 46 (+119.05%)
Mutual labels:  sensor, arduino-library
programmable-air
A hardware kit to experiment with inflatable and vacuum based soft robotics.
Stars: ✭ 54 (+157.14%)
Mutual labels:  sensor, pressure
Easytello
An easy to use library to support DJI Tello scripting in Python 3
Stars: ✭ 58 (+176.19%)
Mutual labels:  drone, drones
CDTM-Deep-Learning-Drones
Course Material for CDTM Deep Learning Drones Course
Stars: ✭ 23 (+9.52%)
Mutual labels:  drone, drones

License

Bolder Flight Systems Logo     Arduino Logo

Bme280

This library communicates with the BME280 environmental sensor and is compatible with Arduino and CMake build systems.

Description

The Bosch Sensortec BME280 is an integrated environmental sensor, which combines high linearity, high accuracy sensors for pressure, temperature, and humidity in a compact LGA package. The pressure sensor is an absolute barometric pressure sensor with features exceptionally high accuracy and resolution at very low noise. The integrated temperature sensor has been optimized for very low noise and high resolution. Pressure, temperature, and humidity measurements can be useful for applications involving unmanned vehicles (indicated and true airspeed, altitude, and density altitude), indoor navigation (floor detection), outdoor navigation (altitudes and airspeeds, dead-reckoning, GPS time to first fix improvements) as well as weather monitoring and home automation.

The BME280 samples pressure and temperature to 20 bit resolution and humidity to 16 bit resolution. The BME280 features programmable oversampling, filtering, and standby time between samples. The BME280 supports both I2C and SPI communication.

Usage

This library supports both I2C and SPI commmunication with the BME280 and supports collecting pressure, temperature, and humidity data. The BME280 temperature data should be treated as die temperature, and is labled as such within this library.

Installation

Arduino

Simply clone or download this library into your Arduino/libraries folder. The library is added as:

#include "bme280.h"

Example Arduino executables are located in: examples/arduino/, see the Examples list for a complete listing and description. Teensy 3.x, 4.x, and LC devices are used for testing under Arduino and this library should be compatible with other Arduino devices.

CMake

CMake is used to build this library, which is exported as a library target called bme280. The header is added as:

#include "bme280.h"

The library can be also be compiled stand-alone using the CMake idiom of creating a build directory and then, from within that directory issuing:

cmake .. -DMCU=MK66FX1M0
make

This will build the library and example executables called i2c_example and spi_example. The example executable source files are located at examples/cmake/i2c.cc and examples/cmake/spi.cc. Notice that the cmake command includes a define specifying the microcontroller the code is being compiled for. This is required to correctly configure the code, CPU frequency, and compile/linker options. The available MCUs are:

  • MK20DX128
  • MK20DX256
  • MK64FX512
  • MK66FX1M0
  • MKL26Z64
  • IMXRT1062_T40
  • IMXRT1062_T41
  • IMXRT1062_MMOD

These are known to work with the same packages used in Teensy products. Also switching packages is known to work well, as long as it's only a package change.

The example targets create executables for communicating with the sensor using I2C or SPI communication. Each target also has a _hex, for creating the hex file to upload to the microcontroller, and an _upload for using the Teensy CLI Uploader to flash the Teensy. Please note that the CMake build tooling is expected to be run under Linux or WSL, instructions for setting up your build environment can be found in our build-tools repo.

Namespace

This library is within the namespace bfs.

Bme280

Methods

Bme280() Default constructor, requires calling the Config method to setup the I2C or SPI bus and I2C address or SPI chip select pin.

Bme280(TwoWire *i2c, const I2cAddr addr) Creates a Bme280 object. This constructor is used for the I2C communication interface. A pointer to the I2C bus object is passed along with an enum of the I2C address of the sensor. Use I2C_ADDR_PRIM if the SDO pin is grounded and I2C_ADDR_SEC if the SDO pin is pulled high.

bfs::Bme280 bme280(&Wire, bfs::Bme280::I2C_ADDR_PRIM);

Bme280(SPIClass *spi, const uint8_t cs) Creates a Bme280 object. This constructor is used for the SPI communication interface. A pointer to the SPI bus object is passed along with the chip select pin of the sensor. Any pin capable of digital I/O can be used as a chip select pin.

bfs::Bme280 bme280(&SPI, 2);

void Config(TwoWire *bus, const I2cAddr addr) This is required when using the default constructor and sets up the I2C bus and I2C address.

void Config(SPIClass *spi, const uint8_t cs) This is required when using the default constructor and sets up the SPI bus and chip select pin.

bool Begin() Initializes communication with the sensor and configures the default sampling rates, oversampling and low pass filter settings. True is returned if communication is able to be established with the sensor and configuration completes successfully, otherwise, false is returned. The communication bus is not initialized within this library and must be initialized seperately; this enhances compatibility with other sensors that may on the same bus.

Wire.begin();
Wire.setClock(400000);
bool status = bme280.Begin();
if (!status) {
  // ERROR
}

The BME280 features programmable oversampling, filtering, and standby time between samples. By default, these are set to the following values:

Settings
Oversampling pressure x 16, temperature x 2, humidity x 1
IIR Filter Coefficient 16
Standby Time 0.5 ms
Performance
Data Output Rate 25 Hz
Filter Bandwidth 0.53 Hz
Response Time 0.88 s

Optionally, the ConfigPresOversampling, ConfigTempOversampling, ConfigHumidityOversampling, ConfigFilterCoef and ConfigStandbyTime functions can be used, following Begin, to change these settings from their default values. For much more information on the settings and performance implications, please refer to the BME280 datasheet.

bool ConfigTempOversampling(const Oversampling oversampling) Sets the temperature oversampling value. The following enumerated oversampling settings are supported:

Oversampling Name Oversampling Value
OVERSAMPLING_1X 1
OVERSAMPLING_2X 2
OVERSAMPLING_4X 4
OVERSAMPLING_8X 8
OVERSAMPLING_16X 16

True is returned on successfully updating the BME280 configuration, otherwise false is returned.

bool status = bme280.ConfigTempOversampling(bfs::Bme280::OVERSAMPLING_16X);
if (!status) {
  // ERROR
}

Oversampling temp_oversampling() Returns the current temperature oversampling value.

bool ConfigPresOversampling(const Oversampling oversampling) Sets the pressure oversampling value. The use of this function is identical to ConfigTempOversampling.

Oversampling pres_oversampling() Returns the current pressure oversampling value.

bool ConfigHumidityOversampling(const Oversampling oversampling) Sets the humidity oversampling value. The use of this function is identical to ConfigTempOversampling.

Oversampling humidity_oversampling() Returns the current humidity oversampling value.

bool ConfigFilterCoef(const FilterCoef val) Sets the digital low pass filter IIR coefficient. This filter is applied to all measurements. The filter is given by the following equation:

data_filtered = (data_filtered_old * (filter_coefficient - 1) + data) / filter_coefficient

The following enumerated filter coefficients are supported:

Filter Coefficient Name Filter Coefficient Value Samples to reach 75% of step response
FILTER_COEF_OFF 1 1
FILTER_COEF_2 2 2
FILTER_COEF_4 4 5
FILTER_COEF_8 8 11
FILTER_COEF_16 16 22

True is returned on successfully updating the BME280 configuration, otherwise false is returned.

bool status = bme280.ConfigFilterCoef(bfs::Bme280::FILTER_COEF_16);
if (!status) {
  // ERROR
}

FilterCoef filter_coef() Returns the current filter coefficient value.

bool ConfigStandbyTime(const StandbyTime standby) Sets the standby time, which is applied to all measurements. This is the time that the sensor spends idle between taking measurements.

The following enumerated standby times are supported:

Standby Time Name Standby Time
STANDBY_TIME_0_5_MS 0.5 ms
STANDBY_TIME_10_MS 10 ms
STANDBY_TIME_20_MS 20 ms
STANDBY_TIME_62_5_MS 62.5 ms
STANDBY_TIME_125_MS 125 ms
STANDBY_TIME_250_MS 250 ms
STANDBY_TIME_500_MS 500 ms
STANDBY_TIME_1000_MS 1000 ms

True is returned on successfully updating the BME280 configuration, otherwise false is returned.

bool status = bme280.ConfigStandbyTime(bfs::Bme280::STANDBY_TIME_0_5_MS);
if (!status) {
  // ERROR
}

StandbyTime standby_time() Returns the current standby time value.

bool Reset() Performs a soft reset of the BME280. True is returned on success.

bool Read() Reads data from the BME280 and stores the data in the Bme280 object. Returns true if data is successfully read, otherwise, returns false.

/* Read the sensor data */
if (bme280.Read()) {
}

float pres_pa() Returns the pressure data from the Bme280 object in units of Pa.

float pressure = bme280.pres_pa();

float die_temp_c Returns the die temperature of the sensor from the Bme280 object in units of degrees C.

float temperature = bme280.die_temp_c();

float humidity_rh Returns the humidity from the Bme280 object in units of %RH.

float temperature = bme280.humidity_rh();

Example List

  • i2c: demonstrates declaring a Bme280 object, initializing the sensor, and collecting data. I2C is used to communicate with the BME-280 sensor.
  • spi: demonstrates declaring a Bme280 object, initializing the sensor, and collecting data. SPI is used to communicate with the BME-280 sensor.

Wiring and Pullups

Please refer to the BME280 datasheet and your microcontroller's pinout diagram. This library was developed using the Adafruit Breakout Board. This library should work well for other breakout boards or embedded sensors, please refer to your vendor's pinout diagram.

I2C

The BME280 pins should be connected as:

  • VDD: this should be a 1.7V to 3.6V power source. The Adafruit breakout includes voltage regulation enabling a 3-5V range.
  • GND: ground.
  • VDDIO: digital I/O supply voltage. This should be between 1.2V and 3.6V. The Adafruit breakout board connects VDDIO so this is not broken out to a pin.
  • SDI: connect to SDA.
  • SCK: connect to SCL.
  • SDO: ground to select I2C address 0x76. Pull high to VDD to select I2C address 0x77.
  • CSB: connect to VDD.

2.2 kOhm resistors should be used as pullups on SDA and SCL, these resistors should pullup with a 3.3V source.

SPI

The BME280 pins should be connected as:

  • VDD: this should be a 1.7V to 3.6V power source. The Adafruit breakout includes voltage regulation enabling a 3-5V range.
  • GND: ground.
  • VDDIO: digital I/O supply voltage. This should be between 1.2V and 3.6V. The Adafruit breakout board connects VDDIO so this is not broken out to a pin.
  • SDI: connect to MOSI.
  • SCK: connect to SCK.
  • SDO: connect to MISO.
  • CSB: connect to chip select pin. Pin 10 was used in the code snippets in this document and the included examples, but any digital I/O pin can be used.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].