├── .gitignore ├── LICENSE.txt ├── Makefile ├── all_constants.py ├── constants.py ├── main.py └── mpu6050.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.mpy 2 | .lastbuild 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/py-mpu6050/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/py-mpu6050/HEAD/Makefile -------------------------------------------------------------------------------- /all_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/py-mpu6050/HEAD/all_constants.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/py-mpu6050/HEAD/constants.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/py-mpu6050/HEAD/main.py -------------------------------------------------------------------------------- /mpu6050.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsks/py-mpu6050/HEAD/mpu6050.py --------------------------------------------------------------------------------