Gy-521 MPU-6050 MPU6050 Module 3 Axis Analog Gyro Sensors+ 3 Axis Accelerometer Module
Thumbnail 1Thumbnail 2Thumbnail 3Thumbnail 4Thumbnail 5Thumbnail 6Thumbnail 7Thumbnail 8Thumbnail 9

Gy-521 MPU-6050 MPU6050 Module 3 Axis Analog Gyro Sensors+ 3 Axis Accelerometer Module

4.4/5
Product ID: 3560877
Secure Transaction

Details

  • Brand
    REES52
  • Item dimensions L x W x H
    1 x 1 x 1
  • Style
    Modern
  • Maximum Supply Voltage
    5 Volts (DC)
  • Measurement Accuracy
    High
3-5V power supply with low dropout regulator
🌀Gyroscope range ±250 to ±2000 °/s
🎯16-bit precision AD converter & data output

Description

🕶️ Elevate your motion sensing game — precision that keeps you ahead of the curve!

  • ROBUST READY - Operates up to 85°C with a built-in low dropout regulator ensuring stable performance under pressure.
  • COMPACT LIGHTWEIGHT - Sleek 1x1 inch design weighing just 0.35 oz fits perfectly into any modern tech setup.
  • VERSATILE SENSORY RANGE - Customize your project with selectable gyro ranges from ±250 to ±2000 °/s and accelerometer ranges up to ±16g.
  • PRECISION MOTION TRACKING - Experience ultra-accurate 16-bit gyroscope and accelerometer data for flawless sensor fusion.
  • SEAMLESS I 2 C COMMUNICATION - Integrate effortlessly with standard IIC protocol for smooth, reliable data transfer.

The Gy-521 MPU-6050 module combines a 3-axis gyroscope and accelerometer with 16-bit precision output, supporting multiple sensitivity ranges and standard I2C communication. Its compact design and robust power regulation make it ideal for advanced motion tracking in personal and professional projects.

Specifications

BrandREES52
Item dimensions L x W x H1 x 1 x 1 inches
StyleModern
Maximum Supply Voltage5 Volts (DC)
Measurement AccuracyHigh
Measuring RangeGyroscope: ± 250, 500, 1000, 2000 °/s; Accelerometer: ± 2, ± 4, ± 8, ± 16g
Mounting TypeFlange Mount
Output TypeDigital
Specific Uses For Productpersonal
Upper Temperature Rating85 Degrees Celsius
UPC692011914492
Global Trade Identification Number00692011914492
ManufacturerBlastCase
Item model numberREES-01
Item Weight0.352 ounces
Product Dimensions1 x 1 x 1 inches
Item Dimensions LxWxH1 x 1 x 1 inches
Voltage5 Volts
ASINB008BOPN40
Is Discontinued By ManufacturerYes
Date First AvailableJune 15, 2012

Have a Question? See What Others Asked

It had NO circuit diagram - or any details. just the small cct board and chip. ANy email sent to company bounces! They sent Norwegian mail to me???
Does this use the same chip as that sold by Sparkfun and Digikey? If "yes", how can it be so cheap? Other places seem to sell just the chip for $14.
Is there any need to add a logic shifter for the sda and scl pin coming from my arduino mega.... my arduino mega is delivering about 4.18v
Can you tell me the voltage output? I'm wondering if I could connect this directly to an IR Blaster. Thank you.

Reviews

4.4

All from verified purchases

A**W

Good unit for the right price.

I am fairly new to Arduino projects, so this was a perfect breakout board to get my feet wet. The major down side to this product is that its difficult to find info on it (as said by other users). After finding some code, the unit seems to work pretty well... I used this board on a quadcopter to help with the inherent stability issues.Hopefully I'll save some people the time to dig up this information. Here is a link for those doing arduino projects:[...] --> See first comment on this posthere's the source code for the I2C library I used:[...] --> See first comment on this postThis library contains two helpful examples; one that allows the raw accelerometer and gyroscope values to be accessed, and the other calculates Euler angles, yaw pitch roll, world accelerations, and quaternions. If you using this with an arduino, make sure that the I2C library and a MPU6050 library are in the Arduino sketch folder, this will allow it to compile correctly.This was also difficult to find:The GY-521 breakout board is wired to the Arduino Mega as followed:Vcc - 3.3VGND - GNDSCL - SCL (pin 21)SDA - SDA (pin 20)ADO - GNDINT - D2The GY-521 breakout board is wired to the Arduino Uno as followed:Vcc - 3.3VGND - GNDSCL - D5SDA - D4ADO - GNDINT - D2

E**E

Fantastic chip, inexpensive but powerful

Chip worked very well with my Arduino. I've used analog accel/gyro sensors before (Razor 6dof), so this was my first encounter with digital. Getting it up and running took a little bit of digging, but there is plenty of information out there to guide you. The best tips I can offer you is to first find code to calibrate this thing. They HAVE to be calibrated to work properly. Jeff Rowberg is a name that will come up, he's written a lot of code for it, but the actual calibration script I found was by Luis Ródenas. You'll need to include the library file, MPU6050.h, but that should be all together. This calibration script will produce 6 calibration offset values... 3 for each of axis for both chips (3*2=6). From that point on you'll need to write those offset values to the chip at the beginning of your code using the function similar to, "accelgyro.setXGyroOffset(30)".So bottom line is, this is an excellent board, it seems very accurate (within tenths of a degree), and works quite well once it's calibrated. Best of luck!

K**N

Ships fast and no issues!

Ships fast and no issues!

M**N

Works as advertised

Good, inexpensive IMU. Shipped promptly.There is no documentation with this device. You can find the datasheets online pretty easily, and the pins are marked as in the pictures. It would be nice for them to include some references to links to get started.. but if I can get it to work, anyone should be able to :-)It came with two headers to solder on - one 90 degree and one straight (just use one).The best library (maybe only) to actually use the DMU onboard is here: [...]With that library, I was able to make use of roll and pitch to display on an LCD and light up some LEDs. I haven't used the other MPU-6050 features yet (I think there is temp or baro on this too?)... It does get noisy at high sampling (100hz) rates, but dropping it to 20-25hz completely solved that. I believe some have applied their own noise-reduction to it, but I find sampling at 25hz is plenty enough for my purposes.

P**E

Amazing how accurate this thing is for the money (A Few Tips Within Review - Also Important note)

It's amazing how accurate this thing is for the money. After writing the code necessary to read in the gyro and accelerometer values the angles it measured were extremly accurate. It accurate enough to use for a quadcopter. I used a complimentary filter to find the angle values. The complimentary filter is simple and is as follows. angle = Filter_gain*angle_gyro+(1-Filter_gain)*angle_accel. I used a filter gain of .98 becuase the acceleromoter values can be very noisey.Tips:-Write some code to find the zeros for the accelorometer gyro in the beginning of the code before the main loop. Then use the calibrated values in your main loop.-Buy a soldering iron to attach this to the pin headers-figure out the angle measurment from the accelerometer and gyro by finding the sensitity for the setting you have.-For basic angle calc like I did on the arduino uno you only need to attach vcc to 5 or 3 volts, GND to ground, SCL to A5 pin, SDA to A4 pinAnother note Important note that drove me crazy:When I read in the gyros over i2c I found that the gyro y addresses were actually the -gyro x value and the gyro x addresses were the gyro y value. Not sure if that's specific to the one I received or if all are like this. (maybe the MPU chip itself was mounted wrong). Once I figured this out it was an easy fix so this still gets 5 stars.

Common Questions

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Reema J.

Perfect platform for hard-to-find items. Delivery was prompt.

1 month ago

Suresh K.

Very impressed with the quality and fast delivery. Will shop here again.

4 days ago

Shop Global, Save with Desertcart
Value for Money
Competitive prices on a vast range of products
Shop Globally
Serving millions of shoppers across more than 100 countries
Enhanced Protection
Trusted payment options loved by worldwide shoppers
Customer Assurance
Trusted payment options loved by worldwide shoppers.
Desertcart App
Shop on the go, anytime, anywhere.
€ 23.10

Duties & taxes incl.

GERMANYstore
1
Free Shipping

with PRO Membership

Free Returns

30 daysfor PRO membership users

15 dayswithout membership

Secure Transaction

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Ayesha M.

The product exactly matches the description. Very satisfied with my purchase.

5 days ago

Pooja R.

The customer service exceeded my expectations. Perfect for buying products you can't find elsewhere.

1 week ago

Gy 521 Mpu 6050 Mpu6050 Module 3 Axis Analog Gyro | Desertcart GERMANY