Native pico-sdk mpu6050 accelerometer and gyroscope library for Raspberry Pi Pico in C++

The mpu6050 works as an accelerometer and gyroscope, and is available as either a standalone IC, or as a breakout board and is usually conntected up via I2C (IIC, ICC or I2C or SPI, depending on your preference). I have added a mpu6050 raspberry pi pico library as part of my group of libraries at the pico-libs repository on github.

The library is easy to use and is easily includable in your project via cmake, and libraries are added in, in the same way that you add in the individual libraries from the pico-sdk its self.

You will first need to check out the pico-libs repository, and then copy external/pico_libs_import.cmake from the repository to the root of your firmware application.

You can add the library from the pico-lib’s adding mpu6050 onto the end of your target_link_libraries in cmake:

target_link_libraries([your executable] pico_stdlib mpu6050)

You can then include “mpu6050.h” and use the following methods from the mpu6050 class.

All in native C++ with the pico-sdk.

See Also

Comments

comments powered by Disqus