uses BBC micro:bit to measure and display indoor air quality using Bosch BME680 and/or Sensirion SGP30

Dependencies:   microbit

uses Bosch BME680 and/or Sensirion SGP30 sensors to measure indor air quality

sensors should be connected to BBC micro:bit using i2c

commands are received and data is being sent using uBit / nordic radio protocol

display ---

last line always indicates: - first dot: bme680 detected - second dot: sgp30 detected - third dot: sgp 30 setting humidity/temperature - fourth dor: sgp30 measuring - fith dot: bme680 measuring

the detect dots should be in a stable state (not blinking) the measuring dots should be blinking (constant light means: measurement failed)

if only one bme680 is present: - first 3 lines indicate gas resistence (air quality / more dots == worse quality) - fourth line indicates humidity level

if only sgp30 is present: - first two lines indicate SGP30 VOC level - third and fourth line indicate sgp30 CO2 level

if both sensors are present: - first line indicates SGP30 VOC level - second line line indicates sgp30 CO2 level - third line indicates bme680 gas resistence (air quality) - fourth line indicates bme 680 humidity level

buttons - B display state, switches betweeen - full bright - low light - display off

AB reset sgp30 baseline in non volatile storage

data logging -- during measurements the minimum and mximum values for each measured value (temperature, air pressure, humidity,gas resistance, VOC, CO2) are being stored in non volatile storage those (and the last measurement results) are being shown when btn A has been pressed

Committer:
jsa1969
Date:
Wed Dec 05 16:05:00 2018 +0000
Revision:
22:5a8bec9862db
Parent:
16:3a4b9a3ef2bb
Child:
49:bbb506b58e6e
updated comments

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jsa1969 2:544117df8c65 1 #include "mbed.h"
jsa1969 2:544117df8c65 2 #include "MicroBit.h"
jsa1969 2:544117df8c65 3
jsa1969 2:544117df8c65 4 #include "i2c_callbacks.h"
jsa1969 2:544117df8c65 5
jsa1969 2:544117df8c65 6 #ifndef SGP30_H
jsa1969 2:544117df8c65 7 #define SGP30_H
jsa1969 2:544117df8c65 8
jsa1969 16:3a4b9a3ef2bb 9 /*
jsa1969 16:3a4b9a3ef2bb 10 the code has been taken from https://github.com/adafruit/Adafruit_SGP30
jsa1969 22:5a8bec9862db 11
jsa1969 22:5a8bec9862db 12 Adafruit invests time and resources providing this open source code,
jsa1969 22:5a8bec9862db 13 please support Adafruit and open-source hardware by purchasing products from Adafruit!
jsa1969 22:5a8bec9862db 14
jsa1969 22:5a8bec9862db 15 The original code has been written by Limor Fried for Adafruit Industries
jsa1969 22:5a8bec9862db 16
jsa1969 22:5a8bec9862db 17 and only been slightly adjusted by me for mbed MicroBit compatibility
jsa1969 16:3a4b9a3ef2bb 18 */
jsa1969 16:3a4b9a3ef2bb 19
jsa1969 2:544117df8c65 20
jsa1969 2:544117df8c65 21 class Sgp30 {
jsa1969 2:544117df8c65 22 public:
jsa1969 2:544117df8c65 23 Sgp30(I2cCallbacks *callbacks);
jsa1969 2:544117df8c65 24 bool begin();
jsa1969 15:8bb5c580d453 25 bool IAQmeasure();
jsa1969 15:8bb5c580d453 26 bool test();
jsa1969 15:8bb5c580d453 27 bool setHumidity(const uint32_t rel_humidity, const uint32_t temperature);
jsa1969 2:544117df8c65 28
jsa1969 2:544117df8c65 29 uint16_t TVOC;
jsa1969 2:544117df8c65 30 uint16_t eCO2;
jsa1969 2:544117df8c65 31
jsa1969 2:544117df8c65 32 uint16_t serialnumber[3];
jsa1969 2:544117df8c65 33
jsa1969 2:544117df8c65 34 private:
jsa1969 2:544117df8c65 35 I2cCallbacks *_callbacks;
jsa1969 2:544117df8c65 36 uint8_t _i2caddr;
jsa1969 2:544117df8c65 37 uint32_t _absolute_humidity;
jsa1969 2:544117df8c65 38
jsa1969 15:8bb5c580d453 39 bool IAQinit();
jsa1969 15:8bb5c580d453 40 bool setHumidity(const uint32_t absolute_humidity);
jsa1969 2:544117df8c65 41 //void write(uint8_t address, uint8_t *data, uint8_t n);
jsa1969 2:544117df8c65 42 //void read(uint8_t address, uint8_t *data, uint8_t n);
jsa1969 15:8bb5c580d453 43 bool readWordFromCommand(const uint8_t command[], const uint8_t commandLength, const uint16_t delay, uint16_t *readdata = NULL, const uint8_t readlen = 0);
jsa1969 15:8bb5c580d453 44 uint8_t generateCRC(const uint8_t data[], const uint8_t datalen);
jsa1969 2:544117df8c65 45
jsa1969 2:544117df8c65 46 };
jsa1969 2:544117df8c65 47
jsa1969 2:544117df8c65 48 #endif // SGP30_H