2020-06-22 05:53 AM
Can't figure out how to read or interpret the temperature reading from this MEM.
I read the two register 20h and 21h and get an answer like this:
RM20h02h14FFh
The very brief description in the spec sheet did not help me.
Has anyone a hint?
2020-06-22 08:45 AM
Hi @Balanceman , I suggest you to check the datasheet p.7 together with the online C drivers for IIS3DWB on Github, especially the iis3dwb_reg.c source code:
float_t iis3dwb_from_lsb_to_celsius(int16_t lsb)
{
return (((float_t)lsb / 256.0f) + 25.0f);
}
In you case, if I well understand:
You have to:
Regards