Its working only if we comment below lines in function bool Bsec2::processData(int64_t currTimeNs, const bme68xData &data) if (BSEC_CHECK_INPUT(bmeConf.process_data, BSEC_INPUT_PRESSURE))
{
inputs[nInputs].sensor_id = BSEC_INPUT_PRESSURE;
inputs[nInputs].signal = data.pressure;
inputs[nInputs].time_stamp = currTimeNs;
nInputs++;
} And we are not able to read pressure measurement because of that, what coud be the reason as we are using example code basic.ino as it is, just changed I2C pin Wire.setPins(33, 32);
... View more