Solved
Hii...i need to know the conversion method for the raw accelerometer data into mg for LIS2DW12 sensor...just the conversion formula
..
..
Hi @Gk.1 ,
you can of course find the LSB-to-physical-unit conversion formula on the datasheet or on the app note.
You can refer to the C drivers on Github, and in particular the lis2dw12_reg.c:
float_t lis2dw12_from_fs2_to_mg(int16_t lsb)
{
return ((float_t)lsb) * 0.061f;
}-Eleon
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.