#lsm303dlhc
Explore tagged Tumblr posts
Text
GY-511 module includes a 3-axis accelerometer and a 3-axis magnetometer. This sensor can measure the linear acceleration at full scales of ± 2 g / ± 4 g / ± 8 g / ± 16 g and magnetic fields at full scales of ± 1.3 / ± 1.9 / ± 2.5 / ± 4.0 / ± 4.7 / ± 5.6 / ± 8.1 Gauss. When you place this module in a magnetic field, according to the Lorentz law, a current is induced in its microscopic coil. The compass module converts this current to the differential voltage for each coordinate direction by calculating these voltages, you can calculate the magnetic field in each direction and obtain the geographic position. It communicates using I2C communication protocol and the voltage level required to power this device is 3V-5V. You can use it in DIY GPS system, accelerometer data acquisition system to be used in Vehicles etc.
3 notes
·
View notes
Text
2pcs LSM303DLHC GY-511 3 Axis e-Compass Accelerometer Magnetometer Module 12 Bit AD Convert
The article was originally published here!
0 notes
Photo
LSM303DLHC 3D accelerometer and 3D magnetometer module https://ift.tt/2Ti6VIL https://ift.tt/2HasLaq
0 notes
Video
instagram
Funcionamiento 👌🏽 . . . . #tcs3200 #led #ingenieros #arduino #3dmodel #3dprinting #electronica #electronic #engineering #electronics #proyectos #pcb #robotdyn #board #science #robot #giroscopio #arduinouno #arduinoproject #arduinorobot #robotica #lsm303dlhc #maker #arduino #diy #arduinoprojects #engineer #arduinomega #atmega #dip #david_proyectos #Repost @david_proyectos with @make_repost (at Busan, South Korea) https://www.instagram.com/p/BvHN5zMnL2-/?utm_source=ig_tumblr_share&igshid=ehi3g38nnzrb
#tcs3200#led#ingenieros#arduino#3dmodel#3dprinting#electronica#electronic#engineering#electronics#proyectos#pcb#robotdyn#board#science#robot#giroscopio#arduinouno#arduinoproject#arduinorobot#robotica#lsm303dlhc#maker#diy#arduinoprojects#engineer#arduinomega#atmega#dip#david_proyectos
0 notes
Photo
How to use i2c on Edison Arduino Board.
#!/usr/bin/python import mraa import time # # LSM303DLHC Magnetic sensor # try: i2c_port = 6 i2c_addr = 0x1e i2c = mraa.I2c(i2c_port) i2c.address(i2c_addr) i2c.writeReg(0x00, 0x08) #CRA_REG_M 0x08=3.0Hz i2c.writeReg(0x01, 0x20) #CRB_REG_M i2c.writeReg(0x02, 0x00) #MR_REG_M while True: buf = i2c.readBytesReg( 0x80 | 0x03, 6) H = buf[0] L = buf[1] x = H << 8 | L if x >= 32768: x -= 65536 H = buf[2] L = buf[3] z = H << 8 | L if z >= 32768: z -= 65536 H = buf[4] L = buf[5] y = H << 8 | L if y >= 32768: y -= 65536 print (x, y, z) time.sleep(1) except KeyboardInterrupt: print "end"
How to use i2cdetect on Edison Arduino Board.
# i2cdetect -y -r 6 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- 19 -- -- -- -- 1e -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 70: -- -- -- -- -- -- -- --
1 note
·
View note
Text
"LSM303DLHC 3D accelerometer and 3D magnetometer module https://ift.tt/2Ti6VIL" , more at:https://ift.tt/2HasLaq
from 2R Hardware & Electronics https://ift.tt/L1BLxI March 02, 2019 at 07:26AM
0 notes
Text
LSM303DLHC 3D accelerometer and 3D magnetometer module
LSM303DLHC is a 3D accelerometer + 3-axis 3D magnetometer sensor. LSM303DLHC has a linear acceleration scale of ± 2g / ± 4g / ± 8g / ± 16g and magnetic field scale ± 1.3 / ± 1.9 / ± 2.5 / ± 4.0 / ± 4.7 / ± 5.6 / ± 8.1 gauss. The LSM303DLHC features an I²C interface that supports standard frequency (100 KHz) and fast frequency (400 KHz) modes. It is suitable to be applied on digital compass, smartphone, portable measuring device, sensors for microcontroller, etc.
Specification: - Channel: 3-axis - Magnetic Field Measurement Scale: ± 1.3 / ± 1.9 / ± 2.5 / ± 4.0 / ± 4.7 / ± 5.6 / ± 8.1 gauss - Measuring Scale of Linear Acceleration: ± 2g / ± 4g / ± 8g / ± 16g - Output Data: 16-bit - Interface: I²C - Working Voltage: 3.3 V - Integrated with temperature sensor - Integrated with FIFO - Supports detection of 4D / 6D orientation
http://ift.tt/2gRJjWN October 19, 2017 at 05:35PM
0 notes