Interface MPU6050 (GY-521) with STM32

I have already covered How to get acceleration values in ADXL345. MPU6050 is also an accelerometer cum Gyroscope device and today in this tutorial we are going to interface it with the STM32 microcontroller.

I will use LCD 20×4 to display the respective values. What’s interesting here is that the LCD and GY521, both will be connected to the same I2C peripheral. SO we are only using 2 wires from microcontroller to interface both the devices and that’s what the true purpose of I2C is.

MPU6050 Have a lot of functions and its not possible to cover all of them in just one tutorial. So in part 1, we will only cover the following:-

  • How to Initialize the device
  • How to read RAW values
  • How to convert acceleration values in ‘g’
  • and Gyroscope values in dps (°/s)

Some Insight into the CODE

Initialization

Let’s start with the initialization of the MPU6050. In order to initialize the sensor, we need to perform the following actions:-

We need to check if the sensor is responding by reading the “WHO_AM_I (0x75)” Register. If the sensor responds with 0x68, this means it’s available and good to go.

I am using HAL_I2C_Mem_Read function to directly read from the given memory register

HAL_I2C_Mem_Read (&hi2c1, MPU6050_ADDR,WHO_AM_I_REG,1, &check, 1, 1000);

Next we will wake the sensor up and in order to do that we will write to the “PWR_MGMT_1 (0x6B)” Register. See below the register content

On writing (0x00) to the PWR_MGMT_1 Register, sensor wakes up and the Clock sets up to 8 MHz

// power management register 0X6B we should write all 0's to wake the sensor up
Data = 0;
HAL_I2C_Mem_Write(&hi2c1, MPU6050_ADDR, PWR_MGMT_1_REG, 1,&Data, 1, 1000);

Now we have to set the Data output Rate or Sample Rate. This can be done by writing into “SMPLRT_DIV (0x19)” Register. This register specifies the divider from the gyroscope output rate used to generate the Sample Rate for the MPU6050.

As the formula says Sample Rate = Gyroscope Output Rate / (1 + SMPLRT_DIV). Where Gyroscope Output Rate is 8KHz, To get the sample rate of 1KHz, we need to use the SMPLRT_DIV as ‘7’.

// Set DATA RATE of 1KHz by writing SMPLRT_DIV register
Data = 0x07;
HAL_I2C_Mem_Write(&hi2c1, MPU6050_ADDR, SMPLRT_DIV_REG, 1, &Data, 1, 1000);

Now configure the Accelerometer and Gyroscope registers and to do so, we need to modify “GYRO_CONFIG (0x1B)” and “ACCEL_CONFIG (0x1C)”Registers.

GYRO_CONFIG
ACCEL_CONFIG

Writing (0x00) to both of these registers would set the Full scale range of ± 2g in ACCEL_CONFIG Register and a Full scale range of ± 250 °/s in GYRO_CONFIG Register along with Self-test disabled.

This completes the initialization of the MPU6050 and Now we will see How to Read the Data from the sensor and how to convert it in the respective formats. Let us start with the Acceleration values first.


Read Value from MPU6050

We can read 1 BYTE from each Register separately or we can just read 6 BYTES all together starting from ACCEL_XOUT_H Register.

As shown above, The ACCEL_XOUT_H (0x3B) Register stores the higher Byte for the acceleration data along X-Axis and Lower Byte is stored in ACCEL_XOUT_L Register. So we need to combine these 2 BYTES into a 16 bit integer value. Below is the process to do that:-

ACCEL_X = (ACCEL_XOUT_H <<8 | ACCEL_XOUT_L)

we are shifting the higher 8 bits to the left and than ‘OR’ it with the lower 8 bits.

 For Example,  if ACCEL_XOUT_H = 11101110 and ACCEL_XOUT_L = 10101010, we will get the resultant 16 bit value as 1110111010101010

Similarly we can do the same for the ACCEL_YOUT and ACCEL_ZOUT Registers. These values will still be the RAW values and we still need to convert them into proper ‘g’ format.

You can see in the picture above that for the Full-Scale range of ± 2g, the sensitivity is 16384 LSB/g. So to get the ‘g‘ value, we need to divide the RAW from 16384. Look at the code below

// Read 6 BYTES of data starting from ACCEL_XOUT_H register

HAL_I2C_Mem_Read (&hi2c1, MPU6050_ADDR, ACCEL_XOUT_H_REG, 1, Rec_Data, 6, 1000);

Accel_X_RAW = (int16_t)(Rec_Data[0] << 8 | Rec_Data [1]);
Accel_Y_RAW = (int16_t)(Rec_Data[2] << 8 | Rec_Data [3]);
Accel_Z_RAW = (int16_t)(Rec_Data[4] << 8 | Rec_Data [5]);

/*** convert the RAW values into acceleration in 'g'
     we have to divide according to the Full scale value set in FS_SEL
     I have configured FS_SEL = 0. So I am dividing by 16384.0
     for more details check ACCEL_CONFIG Register              ****/

Ax = Accel_X_RAW/16384.0;  // get the float g
Ay = Accel_Y_RAW/16384.0;
Az = Accel_Z_RAW/16384.0;

Reading Gyro Data is similar to the Acceleration case. We will start reading 6 BYTES of data from the GYRO_XOUT_H Register, Combine the 2 Bytes to get 16 bit integer RAW values. As we have selected the Full-Scale range of ± 250 °/s, for which the sensitivity is 131 LSB /°/s, we have to divide the RAW values by 131.0 to get the values in dps ( °/s ). Check below

// Read 6 BYTES of data starting from GYRO_XOUT_H register

HAL_I2C_Mem_Read (&hi2c1, MPU6050_ADDR, GYRO_XOUT_H_REG, 1, Rec_Data, 6, 1000);

Gyro_X_RAW = (int16_t)(Rec_Data[0] << 8 | Rec_Data [1]);
Gyro_Y_RAW = (int16_t)(Rec_Data[2] << 8 | Rec_Data [3]);
Gyro_Z_RAW = (int16_t)(Rec_Data[4] << 8 | Rec_Data [5]);

/*** convert the RAW values into dps (°/s)
     we have to divide according to the Full scale value set in FS_SEL
     I have configured FS_SEL = 0. So I am dividing by 131.0
     for more details check GYRO_CONFIG Register              ****/

Gx = Gyro_X_RAW/131.0;
Gy = Gyro_Y_RAW/131.0;
Gz = Gyro_Z_RAW/131.0;

To print the values on the LCD, use the function below

sprintf (buf, "%.2f", Ax);

If the LCD don’t show anything, do the following.
Goto project->setting->c/c++ build->setting->tool setting->c linker and type -u _printf_float inside the command.



Result

Check out the Video Below









You can buy me a coffee Sensor by clicking DONATE OR Just click DOWNLOAD to download the code

Subscribe
Notify of
guest

16 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We don't have any banner, Flash, animation, obnoxious sound, or popup ad. We do not implement these annoying types of ads!

We need money to operate the site, and almost all of it comes from our online advertising.

Please add controllerstech.com to your ad blocking whitelist or disable your adblocking software.

×