Library for the ST ICM-20X Wide-Range 6-DoF Accelerometer and Gyro Family
Project description
Introduction
Library for the ST ICM-20X Wide-Range 6-DoF Accelerometer and Gyro Family
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:
pip3 install adafruit-circuitpython-icm20x
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-icm20x
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-icm20x
Usage Example
For use with the ICM20649:
import time
import board
import adafruit_icm20x
i2c = board.I2C() # uses board.SCL and board.SDA
icm = adafruit_icm20x.ICM20649(i2c)
while True:
print("Acceleration: X:%.2f, Y: %.2f, Z: %.2f m/s^2" % (icm.acceleration))
print("Gyro X:%.2f, Y: %.2f, Z: %.2f rads/s" % (icm.gyro))
print("")
time.sleep(0.5)
For use with the ICM20948:
import time
import board
import adafruit_icm20x
i2c = board.I2C() # uses board.SCL and board.SDA
icm = adafruit_icm20x.ICM20948(i2c)
while True:
print("Acceleration: X:%.2f, Y: %.2f, Z: %.2f m/s^2" % (icm.acceleration))
print("Gyro X:%.2f, Y: %.2f, Z: %.2f rads/s" % (icm.gyro))
print("Magnetometer X:%.2f, Y: %.2f, Z: %.2f uT" % (icm.magnetic))
print("")
time.sleep(0.5)
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file adafruit_circuitpython_icm20x-2.1.0.tar.gz
.
File metadata
- Download URL: adafruit_circuitpython_icm20x-2.1.0.tar.gz
- Upload date:
- Size: 32.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af0209245e82ee6b2c509e7ccdd4f9ca92e405768bb35b41eaf4cec62efd579c |
|
MD5 | 05d0cb713685179ceff0377b6ff46e8b |
|
BLAKE2b-256 | 03fdb239c6cf18d462d28da537406197938004eafe2c788516006ba4bb02e982 |
File details
Details for the file adafruit_circuitpython_icm20x-2.1.0-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_icm20x-2.1.0-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 740b2a9eb413b628c32b993a0d7f48f0a8c0ebb2bcabf67b13e8e10bc1c60dc0 |
|
MD5 | 87e341400a50424f22649f4f5edd5bd7 |
|
BLAKE2b-256 | 24cbae1fb674b90bd5849d414604793cacda1409ceadf278f8d514f7f9505eb1 |