Open
Description
The library declares a BoschSensorClass::getTemperature()
function:
But if you try to use it:
#include <Arduino_BMI270_BMM150.h>
void setup() {
IMU.getTemperature();
}
void loop() {}
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.