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:
Tue Dec 04 06:50:48 2018 +0000
Revision:
2:544117df8c65
Child:
5:9a04d6d0c2ff
sgp30

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 2:544117df8c65 9
jsa1969 2:544117df8c65 10 class Sgp30 {
jsa1969 2:544117df8c65 11 public:
jsa1969 2:544117df8c65 12 Sgp30(I2cCallbacks *callbacks);
jsa1969 2:544117df8c65 13 bool begin();
jsa1969 2:544117df8c65 14 bool IAQmeasure(void);
jsa1969 2:544117df8c65 15 bool setHumidity(uint32_t rel_humidity, uint32_t temperature);
jsa1969 2:544117df8c65 16
jsa1969 2:544117df8c65 17 uint16_t TVOC;
jsa1969 2:544117df8c65 18 uint16_t eCO2;
jsa1969 2:544117df8c65 19
jsa1969 2:544117df8c65 20 uint16_t serialnumber[3];
jsa1969 2:544117df8c65 21
jsa1969 2:544117df8c65 22 private:
jsa1969 2:544117df8c65 23 I2cCallbacks *_callbacks;
jsa1969 2:544117df8c65 24 uint8_t _i2caddr;
jsa1969 2:544117df8c65 25 uint32_t _absolute_humidity;
jsa1969 2:544117df8c65 26
jsa1969 2:544117df8c65 27 bool IAQinit(void);
jsa1969 2:544117df8c65 28 bool setHumidity(uint32_t absolute_humidity);
jsa1969 2:544117df8c65 29 //void write(uint8_t address, uint8_t *data, uint8_t n);
jsa1969 2:544117df8c65 30 //void read(uint8_t address, uint8_t *data, uint8_t n);
jsa1969 2:544117df8c65 31 bool readWordFromCommand(uint8_t command[], uint8_t commandLength, uint16_t delay, uint16_t *readdata = NULL, uint8_t readlen = 0);
jsa1969 2:544117df8c65 32 uint8_t generateCRC(uint8_t data[], uint8_t datalen);
jsa1969 2:544117df8c65 33
jsa1969 2:544117df8c65 34 };
jsa1969 2:544117df8c65 35
jsa1969 2:544117df8c65 36 #endif // SGP30_H