MEMS (sensors)

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

LSM303DLHC Successor / Noise Bandwidth

Posted on April 29, 2014 at 09:56I have been planning a product development that needs magnetic information about the earth magnetic field and accelerometer information about the earth gravity field. I prototyped using the LSM303DLHC, but I do not s...

pc by Associate
  • 206 Views
  • 0 replies
  • 0 kudos

LIS3MDLTR

Posted on March 28, 2014 at 14:02Hi, I received a couple of LIS3 samples last week and I'm using them in order to gain a little experience in the field of magnetometers. I managed to install the chip on top of a plastic pen in order to use it as a m...

adelmo by Associate
  • 189 Views
  • 0 replies
  • 0 kudos

lsm303dlhc calibration issue

Posted on March 20, 2014 at 08:48Dear sir/Madam, we are using lsm303dlhc. we don't know how to do calibrations .we are not understanding scale factor , offset and misalignment . so , i request you please give me the clear information regarding this ...

LSM303DLHC IS NOT WORKING IN PROPER WAY

Posted on March 18, 2014 at 13:57we are  working with lsm303dlhc compass sensor and  interfacing with lpc3250. we are using linux kernel version 2.6.34. and have taken driver codes (accelerometer and magnetometer) from your site. its working only on...

LSM303DLHC IS NOT WORKING IN PROPER WAY

Posted on March 18, 2014 at 13:54we are  working with lsm303dlhc compass sensor and  interfacing with lpc3250. we are using linux kernel version 2.6.34. and have taken driver codes (accelerometer and magnetometer) from your site. its working only on...

LSM303D data synchronization

Posted on January 13, 2014 at 18:35All the example code I've seen reads the acceleration and magnetic field values by polling the appropriate registers.For example:x.l = i2c_read(OUT_X_L_A);x.h = i2c_read(OUT_X_H_A);y.l = i2c_read(OUT_Y_L_A);y.h = i...

trav by Associate
  • 282 Views
  • 1 replies
  • 0 kudos

LSM303DLHC as outdoor thermometer

Posted on December 11, 2013 at 08:06I want to use lsm303dlhc as outdoor thermometer. I use next code       int8_t value= 25+data[0];        uint8_t sign=value&0x80;        uint8_t cels=0;        if(sign)            cels=(~value)+1;        else     ...