Hello, I am so excited to tell you guys this my first project on Odinub using I2C protocol. I will show you how gyroscope and accelerometer work on Odinub. For that I am using MPU-6050. We will try to communicate with a device using i2c protocol. This device, the MPU-6050, is a gyroscope + accelerometer integrated circuit that is very popular among makers and enthusiasts.
Hardware Required:- Odinub
- Odinub converter
- MPU-6050
- Breadboard
- Jumper wires
- Power supply
In this article, Here, we will interface the MPU-6050 module with Odinub to read gyroscope and accelerometer value and print them.If you are new to Odinub then go through our getting started with Odinub.
We can interface the MPU-6050 module with Odinub using python. we will display the value of gyroscope and accelerometer on the terminal which we are read from the MPU-6050 module.
Circuit Diagram:Let's connect the MPU-6050 to the Odinub. we will be using I2C bus of the Odinub so for that:
1. Connect SDA pin will be I2C1_SDA (10)
2. Connect SCL pin will beI2C1_SCL(12)
3. Connect MPU-6050 VCC pin to be 5v(2/4)
4. Connect MPU-6050 GND pin to be GND(6/8).
MPU-6050 GYRO sensor: The MPU-6050 sensor module is an integrated 6- axis motion tracking device. It has a 3-axis gyroscope, 3-axis accelerometer digital motion processor and a temperature sensor all in a single IC.
Gyroscope and accelerometer reading along X, Y and Z axes are available in 2’s complement form.
Gyroscope readings are in degrees per second (dps) unit;Accelerometer readings are in g unit.
Pin Configuration:Vcc:- this pin is used for powering the MPU-6050 module with respect to ground
GND:- this is a ground pin
SDA:-SDA pin is used for data between controller and MPU-6050 module
SCL:- SCL pin is used for clock input
XDA:- This is sensor I2C SDA Data line for configuring and reading from external sensors ((optional) not used in our case)
XCL:- This is sensor I2C SCL clock line for configuring and reading from external sensors ((optional) not used in our case)
ADO:- I2C Slave Address LSB (not applicable in our case)
INT:- Interrupt pin for indication of data ready.
Step1: First of We need to check some i2c configuration on Odinub.For that fire the below command in the terminal.
i2cdetect -r 1
If the gyroscope is properly connected, you will see this. You will see that address 68 is filled out. That is the MPU6050.if you have any problem in this go to the blog you can find your solution here.
Step 2: It’s an optional step if in your Odinub board smbus is not installed then fire the below command.
sudo apt-get install python-smbus
MPU6050 Output:
Output window will show all values mentioned below:
Gx = Gyro X-axis data in degree/seconds
Gy = Gyro Y-axis data in degree/seconds
Gz = Gyro Z-axis data in degree/seconds
Ax = Accelerometer X-axis data in g
Ay = Accelerometer Y-axis data in g
Az = Accelerometer Z-axis data in g
I hope this project help to make such an innovative project!
Comments
Please log in or sign up to comment.