Hi kgoveas, I also met some difficulties on BME688 Development board Communication protocol recently. And it's quite helpful to see this reply. But I am still struggling with the issue after I got the details. Here are my codes. Would you mind giving me more hints please? Thank you! #include "Wire.h"
#define SDA 23
#define SCL 22
void setup(void)
{
Serial.begin(115200);
Wire.begin(SDA, SCL);
foodSensor.begin(BME68X_I2C_ADDR_HIGH, Wire);
... View more