From 837088a9440f502db9fc879c6a9946234c7dfdea Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 6 Sep 2023 11:34:53 +0200 Subject: [PATCH] Fix: remove function definition for not implemented function "getTemperature". (#28) --- src/BoschSensorClass.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/BoschSensorClass.h b/src/BoschSensorClass.h index 270903a..6fa489b 100644 --- a/src/BoschSensorClass.h +++ b/src/BoschSensorClass.h @@ -64,8 +64,6 @@ class BoschSensorClass { virtual int magneticFieldAvailable(); // Number of samples in the FIFO. virtual float magneticFieldSampleRate(); // Sampling rate of the sensor. - float getTemperature(); - protected: // can be modified by subclassing for finer configuration virtual int8_t configure_sensor(struct bmm150_dev *dev); @@ -97,4 +95,4 @@ class BoschSensorClass { extern BoschSensorClass IMU_BMI270_BMM150; #undef IMU -#define IMU IMU_BMI270_BMM150 \ No newline at end of file +#define IMU IMU_BMI270_BMM150