Hi,I am using LIS3DSH Vibration Mems sensor in our project, we need temperature value from sensor. When I read OUT_T register in LIS3DSH , I am getting 0xFE from sensor.Can, You tell how to decode this value temperature value.Regards,chaitanya
Hi,We are using LIS3DSH Mems vibration sensors in our project, currently we interfaced two vibration sensors on single I2C line with 1E & 1D I2C slave address.Can we interface 10 or more vibration sensors on single I2C line?If it's possible, can you ...
Hi,I interfaced LIS3DSH with Nordic controller(PCA10040). I am facing following issues:Data is repeating in Y-Axis.Data is coming 0 for 3 times continously in I2C read buffer.In X-axis same data is coming for 4 seconds data like 1964Our configuration...
Hi,I interfaced LIS3DSH with Nordic controller(PCA10040). I am facing following issues:Data is repeating in Y-Axis.Data is coming 0 for 3 times continously in I2C read buffer.In X-axis same data is coming for 4 seconds data like 1964please suggest an...
Hi,I interfaced LIS3DSH with Nordic controller(PCA10040). I am facing following issues:Data is repeating in Y-Axis.Data is coming 0 for 3 times continously in I2C read buffer.In X-axis same data is coming for 4 seconds data like 1964please suggest an...
I am passing temperature value to twos complement function, I am getting 254, following is the functionint16_t two_compl_to_int16(uint16_t two_compl_value){ int16_t int16_value = 0; /* conversion */ if (two_compl_value > 32768) { int16_va...
a few questions to understand the issue: are you correctly converting raw data into 16-bit two's complement data?A. Yes we are correctly converting raw data Are you reading data in continuous mode and at which ODR?A. We are reading in stream mode wit...
Hi Eleon,Thanks for your reply,are you correctly converting raw data into 16-bit two's complement data? A. Yes, we are converting correctly, as some other data points is correct, following is the function we are using for converting raw value to g va...