We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c87bc2 commit 9e406c7Copy full SHA for 9e406c7
1 file changed
src/drivers/Bma421.cpp
@@ -126,13 +126,6 @@ Bma421::Values Bma421::Process() {
126
uint32_t steps = 0;
127
bma423_step_counter_output(&steps, &bma);
128
129
- int32_t temperature;
130
- bma4_get_temperature(&temperature, BMA4_DEG, &bma);
131
- temperature = temperature / 1000;
132
-
133
- uint8_t activity = 0;
134
- bma423_activity_output(&activity, &bma);
135
136
// X and Y axis are swapped because of the way the sensor is mounted in the PineTime
137
return {steps, data.y, data.x, data.z};
138
}
0 commit comments