164 lines
4.6 KiB
C++
164 lines
4.6 KiB
C++
|
|
#include <Arduino.h>
|
|
#include "bsec.h"
|
|
|
|
#define USE_DISPLAY
|
|
#ifdef USE_DISPLAY
|
|
#include <U8g2lib.h>
|
|
|
|
#ifdef U8X8_HAVE_HW_SPI
|
|
#include <SPI.h>
|
|
#endif
|
|
#ifdef U8X8_HAVE_HW_I2C
|
|
#include <Wire.h>
|
|
#endif
|
|
|
|
//U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ 15, /* data=*/ 4, /* reset=*/ 16);
|
|
U8G2_SSD1306_128X64_NONAME_F_SW_I2C u8g2(U8G2_R0, /* clock=*/ 15, /* data=*/ 4, /* reset=*/ 16);
|
|
#endif
|
|
|
|
|
|
int DisplayUpdateLoopInterval = 1000;
|
|
uint32_t DisplayUpdateLoopMillis = millis() - DisplayUpdateLoopInterval;
|
|
|
|
// Create an object of the class Bsec
|
|
Bsec iaqSensor;
|
|
|
|
String output;
|
|
|
|
// Entry point for the example
|
|
void setup(void)
|
|
{
|
|
Serial.begin(115200);
|
|
Wire.begin();
|
|
|
|
iaqSensor.begin(BME680_I2C_ADDR_PRIMARY, Wire);
|
|
output = "\nBSEC library version " + String(iaqSensor.version.major) + "." + String(iaqSensor.version.minor) + "." + String(iaqSensor.version.major_bugfix) + "." + String(iaqSensor.version.minor_bugfix);
|
|
Serial.println(output);
|
|
checkIaqSensorStatus();
|
|
|
|
bsec_virtual_sensor_t sensorList[10] = {
|
|
BSEC_OUTPUT_RAW_TEMPERATURE,
|
|
BSEC_OUTPUT_RAW_PRESSURE,
|
|
BSEC_OUTPUT_RAW_HUMIDITY,
|
|
BSEC_OUTPUT_RAW_GAS,
|
|
BSEC_OUTPUT_IAQ,
|
|
BSEC_OUTPUT_STATIC_IAQ,
|
|
BSEC_OUTPUT_CO2_EQUIVALENT,
|
|
BSEC_OUTPUT_BREATH_VOC_EQUIVALENT,
|
|
BSEC_OUTPUT_SENSOR_HEAT_COMPENSATED_TEMPERATURE,
|
|
BSEC_OUTPUT_SENSOR_HEAT_COMPENSATED_HUMIDITY,
|
|
};
|
|
|
|
iaqSensor.updateSubscription(sensorList, 10, BSEC_SAMPLE_RATE_LP);
|
|
checkIaqSensorStatus();
|
|
|
|
|
|
#ifdef USE_DISPLAY
|
|
setupDisplay();
|
|
#endif
|
|
|
|
// Print the header
|
|
output = "Timestamp [ms], raw temperature [°C], pressure [hPa], raw relative humidity [%], gas [Ohm], IAQ, IAQ accuracy, temperature [°C], relative humidity [%], Static IAQ, CO2 equivalent, breath VOC equivalent";
|
|
Serial.println(output);
|
|
|
|
|
|
}
|
|
|
|
// Function that is looped forever
|
|
void loop(void)
|
|
{
|
|
unsigned long time_trigger = millis();
|
|
if (iaqSensor.run()) { // If new data is available
|
|
output = String(time_trigger);
|
|
output += ", " + String(iaqSensor.rawTemperature);
|
|
output += ", " + String(iaqSensor.pressure);
|
|
output += ", " + String(iaqSensor.rawHumidity);
|
|
output += ", " + String(iaqSensor.gasResistance);
|
|
output += ", " + String(iaqSensor.iaq);
|
|
output += ", " + String(iaqSensor.iaqAccuracy);
|
|
output += ", " + String(iaqSensor.temperature);
|
|
output += ", " + String(iaqSensor.humidity);
|
|
output += ", " + String(iaqSensor.staticIaq);
|
|
output += ", " + String(iaqSensor.co2Equivalent);
|
|
output += ", " + String(iaqSensor.breathVocEquivalent);
|
|
Serial.println(output);
|
|
} else {
|
|
checkIaqSensorStatus();
|
|
}
|
|
#ifdef USE_DISPLAY
|
|
updateDisplay();
|
|
#endif
|
|
}
|
|
|
|
// Helper function definitions
|
|
void checkIaqSensorStatus(void)
|
|
{
|
|
if (iaqSensor.status != BSEC_OK) {
|
|
if (iaqSensor.status < BSEC_OK) {
|
|
output = "BSEC error code : " + String(iaqSensor.status);
|
|
Serial.println(output);
|
|
for (;;)
|
|
errLeds(); /* Halt in case of failure */
|
|
} else {
|
|
output = "BSEC warning code : " + String(iaqSensor.status);
|
|
Serial.println(output);
|
|
}
|
|
}
|
|
|
|
if (iaqSensor.bme680Status != BME680_OK) {
|
|
if (iaqSensor.bme680Status < BME680_OK) {
|
|
output = "BME680 error code : " + String(iaqSensor.bme680Status);
|
|
Serial.println(output);
|
|
for (;;)
|
|
errLeds(); /* Halt in case of failure */
|
|
} else {
|
|
output = "BME680 warning code : " + String(iaqSensor.bme680Status);
|
|
Serial.println(output);
|
|
}
|
|
}
|
|
}
|
|
|
|
void errLeds(void)
|
|
{
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
digitalWrite(LED_BUILTIN, HIGH);
|
|
delay(100);
|
|
digitalWrite(LED_BUILTIN, LOW);
|
|
delay(100);
|
|
}
|
|
|
|
#ifdef USE_DISPLAY
|
|
void setupDisplay() {
|
|
u8g2.begin();
|
|
u8g2.setFont(u8g2_font_courB08_tr); // choose a suitable font
|
|
updateDisplay();
|
|
}
|
|
|
|
void updateDisplay() {
|
|
if(millis() - DisplayUpdateLoopMillis > DisplayUpdateLoopInterval) {
|
|
DisplayUpdateLoopMillis = millis();
|
|
char displayText[256];
|
|
u8g2.clearBuffer();
|
|
|
|
char tempString[10];
|
|
dtostrf(iaqSensor.temperature, 4, 2, tempString);
|
|
sprintf(displayText, "Temp: %s", tempString);
|
|
u8g2.drawStr(0,10,displayText);
|
|
|
|
char humidString[10];
|
|
dtostrf(iaqSensor.humidity, 4, 2, humidString);
|
|
sprintf(displayText, "Humidity: %s", humidString);
|
|
u8g2.drawStr(0,20,displayText);
|
|
|
|
char co2String[10];
|
|
dtostrf(iaqSensor.co2Equivalent, 4, 2, co2String);
|
|
sprintf(displayText, "CO2-Equivalent: %s", "");
|
|
u8g2.drawStr(0,30,displayText);
|
|
sprintf(displayText, "%20s", co2String);
|
|
u8g2.drawStr(0,40,displayText);
|
|
|
|
u8g2.sendBuffer();
|
|
}
|
|
}
|
|
#endif |