Hello, After receiving the Nicla Sense me arduino card, we've been trying to figure out how to access the data returned from the BME688 gas sensor using arduino IDE. We are connecting the card through a regular USB cable. So far, we've been using these lines of code: Sensor gas(BHY2_SENSOR_ID_GAS); // Declaring the sensor as a global variable. BHY2.update(); gas_value=gas.value(); // To access the data returned from the BME688 gas sensor But, upon println(gas_value); we have been only seeing an integer number. So our question is basically, what are the functions/variables to use in order to see the full potentiel of BME688 and the data that it captures.
... View more