├── FaBo9Axis_MPU9250 ├── MPU9250.py └── __init__.py ├── LICENSE ├── README.md ├── example └── read9axis.py └── setup.py /FaBo9Axis_MPU9250/MPU9250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaBoPlatform/FaBo9AXIS-MPU9250-Python/HEAD/FaBo9Axis_MPU9250/MPU9250.py -------------------------------------------------------------------------------- /FaBo9Axis_MPU9250/__init__.py: -------------------------------------------------------------------------------- 1 | from .MPU9250 import * 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaBoPlatform/FaBo9AXIS-MPU9250-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaBoPlatform/FaBo9AXIS-MPU9250-Python/HEAD/README.md -------------------------------------------------------------------------------- /example/read9axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaBoPlatform/FaBo9AXIS-MPU9250-Python/HEAD/example/read9axis.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaBoPlatform/FaBo9AXIS-MPU9250-Python/HEAD/setup.py --------------------------------------------------------------------------------