BME680

BME680 is an integrated environmental sensor developed specifically for mobile applications and wearables where size and low power consumption are key requirements. Expanding Bosch Sensortec’s existing family of environmental sensors, the BME680 integrates for the first time individual high linearity and high accuracy sensors for gas, pressure, humidity and temperature.

SVG1

DFRobot_BME680 Library for Arduino


Provides an Arduino library for reading and interpreting Bosch BME680 data over I2C over SPI.Reads temperature, humidity, gas, IAQ(details in examples\readme), pressure and calculates altitude.

Table of Contents

Installation

To use this library download the zip file, uncompress it to a folder named DFRobot_BME680. Download the zip file first to use this library and uncompress it to a folder named DFRobot_BME680.

Methods

#include <DFRobot_BME680_SPI.h>  //
#include <DFRobot_BME680_I2C.h>  //choose at least one

DFRobot_BME680_I2C bme(I2C_address);
DFRobot_BME680_SPI bme(pin_cs);


/*
 * @brief begin BME680 device
 *
 * @return result
 *    ture : falid
 *    false : succussful
 */
boolean begin(void);

/*
 * @brief start convert to get a accurate values
 */
void startConvert(void);

/*
 * @brief update all data to MCU ram
 */
void update(void);

/*
 * @brief update all data to MCU ram with IAQ (only for esp8266 now)
 *
 * @return result:
 *         0 :complete
 *         1 :busy
 */
int8_t iaqUpdate(void);

/*
 * @brief check IAQ ready
 *
 * @return result:
 *         0 :ready
 *         1 :not ready
 */
uint8_t isIAQReady(void);

/*
 * @brief read the temperature value (unit ℃)
 *
 * @return temperature value, this value has two decimal points
 */
float readTempture(void);

/*
 * @brief read the humidity value (unit %rh)
 *
 * @return humidity value, this value has two decimal points
 */
float readHumidity(void);

/*
 * @brief read the pressure value (unit pa)
 *
 * @return pressure value, this value has two decimal points
 */
float readPressure(void);

/*
 * @brief read the altitude (unit meter)
 *
 * @return altitude value, this value has two decimal points
 */
float readAltitude(void);

/*
 * @brief read the gas resistance(unit ohm)
 *
 * @return temperature value, this value has two decimal points
 */
float readGasResistance(void);

/*
 * @brief read normalised atmospheric pressure (unit pa)
 *
 * @param altitude   accurate altitude for normalising
 * 
 * @return normalised atmospheric pressure
 */
float readSeaLevel(float altitude);

/*
 * @brief read the Calibrated altitude (unit meter)
 *
 * @param seaLevelPressure  normalised atmospheric pressure
 *
 * @return calibrated altitude value , this value has two decimal points
 */
float readCalibratedAltitude(float seaLevelPressure);

#define BME680_OS_NONE		UINT8_C(0)
#define BME680_OS_1X		UINT8_C(1)
#define BME680_OS_2X		UINT8_C(2)
#define BME680_OS_4X		UINT8_C(3)
#define BME680_OS_8X		UINT8_C(4)
#define BME680_OS_16X		UINT8_C(5)

typedef enum {
  eBME680_PARAM_TEMPSAMP,
  eBME680_PARAM_HUMISAMP,
  eBME680_PARAM_PREESAMP,
  eBME680_PARAM_IIRSIZE
} eBME680_param_t;

/*
 * @brief set bme680 parament
 *
 * @param eParam        :which param you want to change
 *        dat           :object data, can't more than 5
 */
void setParam(eBME680_param_t eParam, uint8_t dat);

/*
 * @brief set bme680 gas heater
 *
 * @param temp        :your object temp
 *        t           :time spend in milliseconds
 */
void setGasHeater(uint16_t temp, uint16_t t);

Compatibility

MCU Work Well Work Wrong Untested Remarks
FireBeetle-ESP32
FireBeetle-ESP8266
FireBeetle-BLE4.1
Arduino uno
Arduino leonardo

History

  • Dec 4, 2017 - Version 2.0.0 released.
  • Sep 4, 2017 - Version 1.0.0 released.

Credits

Written by DFRobot_xiaowo, 2017. (Welcome to our website)