compilation fails due to the declared function not being implemented:
C:\Users\per\AppData\Local\Temp\.arduinoIDE-unsaved2023718-18988-8022i1.jjmfp\sketch_aug18a/sketch_aug18a.ino:3: undefined reference to `BoschSensorClass::getTemperature()'
I see from its datasheet that the sensor does support temperature readings.
The library declares a
BoschSensorClass::getTemperature()
function:https://github.com/arduino-libraries/Arduino_BMI270_BMM150/blob/aabdaf680567cffc1721ffbd0baf76cfc7dcd62a/src/BoschSensorClass.h#L67
But if you try to use it:
compilation fails due to the declared function not being implemented:
I see from its datasheet that the sensor does support temperature readings.