Skip to content

Commit

Permalink
removeme: temp: print waring if BSEC version is not 1.8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
facchinm committed Mar 18, 2024
1 parent 378f77b commit bf0dcf5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/AirQualityClass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ int AirQualityClass::begin()
if (checkIaqSensorStatus() == STATUS_ERROR){
return 0;
}
if (iaqSensor->version.minor != 0) {
Serial.println("Probably wrong BSEC library from lib manager");
}

bsec_virtual_sensor_t sensorList[10] = {
BSEC_OUTPUT_RAW_TEMPERATURE,
Expand Down

0 comments on commit bf0dcf5

Please sign in to comment.