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:
Fri Jun 03 17:05:56 2022 +0000
Revision:
60:6b21ca38ee7c
Parent:
52:112eaa5282c6
cleanup

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 52:112eaa5282c6 26 bool IAQmeasureRaw();
jsa1969 15:8bb5c580d453 27 bool test();
jsa1969 15:8bb5c580d453 28 bool setHumidity(const uint32_t rel_humidity, const uint32_t temperature);
jsa1969 2:544117df8c65 29
jsa1969 49:bbb506b58e6e 30 bool getIAQBaseline(uint16_t *eco2_base, uint16_t *tvoc_base);
jsa1969 49:bbb506b58e6e 31 bool setIAQBaseline(uint16_t eco2_base, uint16_t tvoc_base);
jsa1969 49:bbb506b58e6e 32
jsa1969 2:544117df8c65 33 uint16_t TVOC;
jsa1969 2:544117df8c65 34 uint16_t eCO2;
jsa1969 52:112eaa5282c6 35 uint16_t rawH2;
jsa1969 52:112eaa5282c6 36 uint16_t rawEthanol;
jsa1969 2:544117df8c65 37
jsa1969 2:544117df8c65 38 uint16_t serialnumber[3];
jsa1969 2:544117df8c65 39
jsa1969 2:544117df8c65 40 private:
jsa1969 2:544117df8c65 41 I2cCallbacks *_callbacks;
jsa1969 2:544117df8c65 42 uint8_t _i2caddr;
jsa1969 2:544117df8c65 43 uint32_t _absolute_humidity;
jsa1969 2:544117df8c65 44
jsa1969 15:8bb5c580d453 45 bool IAQinit();
jsa1969 15:8bb5c580d453 46 bool setHumidity(const uint32_t absolute_humidity);
jsa1969 2:544117df8c65 47 //void write(uint8_t address, uint8_t *data, uint8_t n);
jsa1969 2:544117df8c65 48 //void read(uint8_t address, uint8_t *data, uint8_t n);
jsa1969 15:8bb5c580d453 49 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 50 uint8_t generateCRC(const uint8_t data[], const uint8_t datalen);
jsa1969 2:544117df8c65 51
jsa1969 2:544117df8c65 52 };
jsa1969 2:544117df8c65 53
jsa1969 2:544117df8c65 54 #endif // SGP30_H