Skip to content

Commit

Permalink
Update AccelerometerThread.h to work with T-Watch S3
Browse files Browse the repository at this point in the history
  • Loading branch information
djkazic authored and caveman99 committed Mar 11, 2024
1 parent eb372c1 commit 766beef
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/AccelerometerThread.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,21 @@ class AccelerometerThread : public concurrency::OSThread
#endif

struct bma423_axes_remap remap_data;
#ifdef T_WATCH_S3
remap_data.x_axis = 1;
remap_data.x_axis_sign = 0;
remap_data.y_axis = 0;
remap_data.y_axis_sign = 0;
remap_data.z_axis = 2;
remap_data.z_axis_sign = 1;
#else
remap_data.x_axis = 0;
remap_data.x_axis_sign = 1;
remap_data.y_axis = 1;
remap_data.y_axis_sign = 0;
remap_data.z_axis = 2;
remap_data.z_axis_sign = 1;
#endif
// Need to raise the wrist function, need to set the correct axis
bmaSensor.setRemapAxes(&remap_data);
// sensor.enableFeature(BMA423_STEP_CNTR, true);
Expand Down Expand Up @@ -171,4 +180,4 @@ class AccelerometerThread : public concurrency::OSThread
Adafruit_LIS3DH lis;
};

} // namespace concurrency
} // namespace concurrency

0 comments on commit 766beef

Please sign in to comment.