The BlueDot BME680 Environmental and Gas Sensor not only allows you measure temperature, humidity, pressure and altitude with an Arduino, but with the integrated Metal Oxide (MOX) Gas Sensor you can measure volatile organic compounds (VOCs) in the air. The Metal Oxide-based sensor detects VOCs by adsorption on its sensitive layer and its resistance changes with the VOC concentration (the higher the VOC concentration, the lower the output resistance and vice-versa). The raw-signal is therefore a resistance value in ohms.
Volatile organic compounds are typically found in building materials, printers, solvents, paints, gasoline and many household products. The long-term exposure to VOCs can be harmful to our health and since we spend so much time indoors (homes and offices), it is important to find the source and reduce the concentration of VOCs in indoor environments.
The BME680 sensor is the most recent development from Bosch Sensortec, the world's leading manufacturer of MEMS (Micro Electromechanical Systems). Here are 5 features that make the BlueDot BME680 Environmental and Gas Sensor very easy to use:
The first step with the BME680 Weather Station 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 BME680 to an ESP8266 WiFi microcontroller allows you to measure the IAQ-index with the BSEC library. Take a look at our tutorial section for a complete guide on how to do that!
Connecting the BME680 on the I2C bus is very easy and is identical to the connection of the BME280 sensor. 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 BME680 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.
The BlueDot BME680 board works best with the Arduino Library written by Adafruit. The easiest way to start using your BME680 sensor is to 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 BME680 Library on the Library Manager.
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. Adafruit included a great example, which we can use to run the BME680. Just go to File > Examples > Adafruit BME680 Library and open the sketch bme680test.
Now let's take a look at the example sketch. The first step in the program is to define the communication protocol. Depending on how you connected the board to the microcontroller, choose between I2C, Hardware SPI and Software SPI. The default value is set to the I2C mode.
Adafruit_BME680 bme; // I2C
//Adafruit_BME680 bme(BME_CS); // hardware SPI
//Adafruit_BME680 bme(BME_CS, BME_MOSI, BME_MISO, BME_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 BME680. 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 BME_SCK 13
#define BME_MISO 12
#define BME_MOSI 11
#define BME_CS 10
This is actually all you need to do before running the program. But before doing so, you have the option of adjusting the oversampling factors and the IIR filter (Infinite Impulse Response), as well as the temperature of the internal heating plate and the heating duration for the gas measurements. The default values work great.
//Set up oversampling and filter initialization bme.setTemperatureOversampling(BME680_OS_8X); bme.setHumidityOversampling(BME680_OS_2X); bme.setPressureOversampling(BME680_OS_4X); bme.setIIRFilterSize(BME680_FILTER_SIZE_3); bme.setGasHeater(320, 150); // 320*C for 150 ms
Now you are ready to run the sketch. What can you expect to receive from the BME680 sensor?
Just like the BME280 sensor, the BME680 measures temperature, humidity, atmospheric pressure and altitude (calculated from the air pressure). The BME680 also contains an integrated metal oxide gas sensor, which basically works as a hot plate with an electrical resistance that decreases when exposed to certain gases in the atmosphere. The sensor heats the hot plate up to the target temperature for a certain duration (default values are 320°C for 150 ms) and after that it measures the electrical resistance of the hot plate. This is the output of the gas sensor.
xkcd.com
A 3D model of the BlueDot BME680 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