Skip to main content

Easy to use python package to use MPU-6050. So get out your project setup and dream up some well-balanced projects

Project description

license: MIT latest PyPI version PyPI download count

A Python module for accessing the MPU-6050 digital accelerometer and gyroscope on a Raspberry Pi.

Example

Assuming that the address of your MPU-6050 is 0x68, you can read read accelerometer data like this:

>>> from MPU6050 import MPU6050

>>> mpu = MPU6050.mpu6050(0x68)

>>> mpu.reset()

>>> mpu.power_manage()

>>> mpu.gyro_config()

>>> mpu.accel_config()

>>> while True:

>>>     gyroscope_data = mpu.read_gyroscope()

>>>     accelerometer_data = mpu.read_accelerometer()

Dependencies

Either the python-smbus or python3-smbus package, according to your Python version.

Installation

There are two ways of installing this package: via PyPi or via the git repository. Installing from the git repository insures that you have the absolute latest version installed, but this can be prone to bugs.

1. install the python-smbus package

sudo apt install python3-smbus

2a. Install this package from PyPi repository

pip install mpu6050-PI

Or:

2b. Clone the repository and run setup.py

git clone https://github.com/addy123d/mpu6050-pi.git
python setup.py install

Issues & Bugs

Please report any issues or bugs here:

https://github.com/addy123d/mpu6050-pi/issues

License

Copyright (c) 2022 Gagan Deepak (gagan@ineuron.ai), Aditya Chaudhary (adityachaudhary@ineuron.ai) and contributors. Available under the MIT License. For more information, see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpu6050-PI-0.0.2.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

mpu6050_PI-0.0.2-py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page