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:
Sun Jan 16 15:42:13 2022 +0000
Revision:
49:bbb506b58e6e
Parent:
46:2fed2865a0f3
support switching light levels via btn B

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jsa1969 46:2fed2865a0f3 1 #ifndef IaqNonVolatileStore_H
jsa1969 46:2fed2865a0f3 2 #define IaqNonVolatileStore_H
jsa1969 38:0f29a0ea64ca 3
jsa1969 11:6844a5578b4f 4 #include "mbed.h"
jsa1969 11:6844a5578b4f 5 #include "MicroBit.h"
jsa1969 11:6844a5578b4f 6
jsa1969 33:af2dfab24ca9 7 class MovingAverage;
jsa1969 11:6844a5578b4f 8
jsa1969 46:2fed2865a0f3 9 class IaqNonVolatileStore {
jsa1969 11:6844a5578b4f 10 public:
jsa1969 39:efe22f143e47 11 static const int AVERAGE_BUFFER_SIZE;
jsa1969 39:efe22f143e47 12
jsa1969 46:2fed2865a0f3 13 IaqNonVolatileStore(MicroBit* uBit);
jsa1969 46:2fed2865a0f3 14 ~IaqNonVolatileStore();
jsa1969 17:a2c4dd192146 15
jsa1969 46:2fed2865a0f3 16 void clear();
jsa1969 49:bbb506b58e6e 17 void resetTmpHumCo2();
jsa1969 17:a2c4dd192146 18
jsa1969 49:bbb506b58e6e 19 void updateGas(uint32_t gas);
jsa1969 49:bbb506b58e6e 20 uint32_t getGasMax();
jsa1969 14:71060505061e 21 uint32_t getGasMin();
jsa1969 17:a2c4dd192146 22
jsa1969 19:52e19461e867 23 void updateTemp(const int16_t temperature);
jsa1969 19:52e19461e867 24 int16_t getTempMax();
jsa1969 19:52e19461e867 25 int16_t getTempMin();
jsa1969 14:71060505061e 26
jsa1969 17:a2c4dd192146 27 void updatePress(const uint32_t pressure);
jsa1969 17:a2c4dd192146 28 uint32_t getPressMax();
jsa1969 17:a2c4dd192146 29 uint32_t getPressMin();
jsa1969 14:71060505061e 30
jsa1969 17:a2c4dd192146 31 void updateHumidity(const uint32_t humidity);
jsa1969 17:a2c4dd192146 32 uint32_t getHumMax();
jsa1969 17:a2c4dd192146 33 uint32_t getHumMin();
jsa1969 12:96eb06e837f4 34
jsa1969 18:c4ac93e01027 35 void updateVoc(const uint32_t voc);
jsa1969 18:c4ac93e01027 36 uint32_t getVocMax();
jsa1969 18:c4ac93e01027 37
jsa1969 18:c4ac93e01027 38 void updateCo(const uint32_t co);
jsa1969 18:c4ac93e01027 39 uint32_t getCoMax();
jsa1969 49:bbb506b58e6e 40 void storeIAQBaseline(uint16_t eco2_base, uint16_t tvoc_base);
jsa1969 49:bbb506b58e6e 41 bool getIAQBaseline(uint16_t *eco2_base, uint16_t *tvoc_base);
jsa1969 49:bbb506b58e6e 42 void clearIQQBaseline();
jsa1969 38:0f29a0ea64ca 43
jsa1969 38:0f29a0ea64ca 44 const uint32_t* debugInfo();
jsa1969 43:f968ca84d4ed 45 bool strayData();
jsa1969 18:c4ac93e01027 46
jsa1969 12:96eb06e837f4 47 private:
jsa1969 12:96eb06e837f4 48 MicroBit* _uBit;
jsa1969 33:af2dfab24ca9 49
jsa1969 33:af2dfab24ca9 50 MovingAverage* _movingAverage;
jsa1969 33:af2dfab24ca9 51
jsa1969 19:52e19461e867 52 int16_t _tempMax, _tempMin;
jsa1969 49:bbb506b58e6e 53 uint32_t _maxGas, _minGas,
jsa1969 17:a2c4dd192146 54 _pressMax, _pressMin,
jsa1969 18:c4ac93e01027 55 _humMax, _humMin,
jsa1969 30:2958c6c803b9 56 _vocMax,
jsa1969 30:2958c6c803b9 57 _coMax;
jsa1969 14:71060505061e 58
jsa1969 14:71060505061e 59 uint32_t getStored(const char* key, const uint32_t defaultVal);
jsa1969 19:52e19461e867 60 int16_t getStored16(const char * key, const int16_t defaultVal);
jsa1969 14:71060505061e 61 void update(const uint32_t value, uint32_t* maxVal, uint32_t* minVal, const char* maxKey, const char* minKey);
jsa1969 11:6844a5578b4f 62 };
jsa1969 11:6844a5578b4f 63
jsa1969 46:2fed2865a0f3 64 #endif // IaqNonVolatileStore_H