esp32_BNO08x is a C++ component for esp-idf v5.x, serving as a driver for both BNO080 and BNO085 IMUs.
Originally based on the SparkFun BNO080 Arduino Library, it has since diverged significantly in implementation while retaining all original features and more, including callback functions enabled by its multi-tasked approach.
Currently, only SPI is supported. There are no plans to support I2C due to unpredictable behavior caused by an esp32 I2C driver silicon bug. UART support may be implemented in the future.
The default wiring is depicted below, it can be changed at driver initialization (see example section).
If your ESP does not have the GPIO pin numbers depicted below, you must change the default GPIO settings in menuconfig. See the Menuconfig section.
-
Create a "components" directory in the root workspace directory of your esp-idf project if it does not exist already.
In workspace directory:
mkdir components
-
Cd into the components directory and clone the esp32_BNO08x repo.
cd components git clone https://github.com/myles-parfeniuk/esp32_BNO08x.git
-
Ensure you clean your esp-idf project before rebuilding.
Within esp-idf enabled terminal:idf.py fullclean
This library provides a menuconfig menu configured in Kconfig.projbuild. It contains settings to control the default GPIO and a few other things.
To access the menu:
-
Within esp-idf enabled terminal, execute the menuconfig command:
idf.py menuconfig
-
Scroll down to the esp_BNO08x menu and enter it, if you're using vsCode you may have to use the "j" and "k" keys instead of the arrow keys.
-
Modify whatever settings you'd like from the sub menus. The GPIO Configuration menu allows for the default GPIO pins to be modified, the SPI Configuration menu allows for the default host peripheral, SCLK frequency, and queue size to be modified, the Logging menu allows for the enabling and disabling of log/print statements, and the Callbacks menu allows for the default size of the call-back execution task to be modified.
There are two ways data returned from the BNO08x can be accessed with this library:
- Polling Method with
data_available()
Function:
- Use the
data_available()
function to poll for new data, similar to the SparkFun library. - Behavior: It is a blocking function that returns
true
when new data is received orfalse
if a timeout occurs. - See the Polling Example below.
- Callback Registration with
register_cb()
Function:
- Register callback functions that automatically execute upon receiving new data.
- Behavior: The registered callback will be invoked whenever new data is available.
- See the Call-Back Function Example below.
#include <stdio.h>
#include "BNO08x.hpp"
extern "C" void app_main(void)
{
BNO08x imu; //create IMU object with default wiring scheme
float x, y, z = 0;
//if a custom wiring scheme is desired instead of default:
/*
bno08x_config_t imu_config; //create config struct
imu_config.io_mosi = GPIO_NUM_X; //assign pin
imu_config.io_miso = GPIO_NUM_X; //assign pin
//etc...
BNO08x imu(imu_config); //pass config to BNO08x constructor
*/
imu.initialize(); //initialize IMU
//enable gyro & game rotation vector
imu.enable_game_rotation_vector(100000UL); //100,000us == 100ms report interval
imu.enable_calibrated_gyro(150000UL); //150,000us == 150ms report interval
while(1)
{
//print absolute heading in degrees and angular velocity in Rad/s
if(imu.data_available())
{
x = imu.get_calibrated_gyro_velocity_X();
y = imu.get_calibrated_gyro_velocity_Y();
z = imu.get_calibrated_gyro_velocity_Z();
ESP_LOGW("Main", "Velocity: x: %.3f y: %.3f z: %.3f", x, y, z);
x = imu.get_roll_deg();
y = imu.get_pitch_deg();
z = imu.get_yaw_deg();
ESP_LOGI("Main", "Euler Angle: x (roll): %.3f y (pitch): %.3f z (yaw): %.3f", x, y, z);
}
}
}
#include <stdio.h>
#include "BNO08x.hpp"
extern "C" void app_main(void)
{
BNO08x imu; // create IMU object with default wiring scheme
// if a custom wiring scheme is desired instead of default:
/*
bno08x_config_t imu_config; //create config struct
imu_config.io_mosi = GPIO_NUM_X; //assign pin
imu_config.io_miso = GPIO_NUM_X; //assign pin
//etc...
BNO08x imu(imu_config); //pass config to BNO08x constructor
*/
imu.initialize(); // initialize IMU
// enable gyro & game rotation vector
imu.enable_game_rotation_vector(100000UL); // 100,000us == 100ms report interval
imu.enable_calibrated_gyro(150000UL); // 150,000us == 150ms report interval
// register a callback function (in this case a lambda function, but it doesn't have to be)
imu.register_cb(
[&imu]()
{
// callback function contents, executed whenever new data is parsed
// print absolute heading in degrees and angular velocity in Rad/s
float x, y, z = 0;
x = imu.get_calibrated_gyro_velocity_X();
y = imu.get_calibrated_gyro_velocity_Y();
z = imu.get_calibrated_gyro_velocity_Z();
ESP_LOGW("Main", "Velocity: x: %.3f y: %.3f z: %.3f", x, y, z);
x = imu.get_roll_deg();
y = imu.get_pitch_deg();
z = imu.get_yaw_deg();
ESP_LOGI("Main", "Euler Angle: x (roll): %.3f y (pitch): %.3f z (yaw): %.3f", x, y, z);
});
while (1)
{
vTaskDelay(300 / portTICK_PERIOD_MS); // delay here is irrelevant, we just don't want to trip cpu watchdog
}
}
A basic unit testing suite is included with this library, but it is very rudimentary.
It can be used to verify some of the basic features of a BNO08x device and this library.
-
Create a project and add the component as described in the getting started guide.
-
Open the outermost CMakeLists.txt file in the project root directory, as depicted below.
-
Modify the file by adding "set(TEST_COMPONENTS "esp32_BNO08x" CACHE STRING "Components to test.")" as depicted below:
# For more information about build system see # https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html # The following five lines of boilerplate have to be in your project's # CMakeLists in this exact order for cmake to work correctly cmake_minimum_required(VERSION 3.16) set(TEST_COMPONENTS "esp32_BNO08x" CACHE STRING "Components to test.") include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(your_project_name)
-
Include the test suite in your main file and launch into the test suite:
#include <stdio.h> #include "BNO08xTestSuite.hpp" extern "C" void app_main(void) { BNO08xTestSuite::run_all_tests(); }
-
Ensure you run
idf.py fullclean
or delete your build directory before building for the first time after modifying the CMakeLists.txt file in step 3.
Tests are implemented with the unity unit testing component.
To add a test, create a new .cpp file, or modify one of the existing ones in esp32_BNO08x/test/
.
Follow the existing test structure as an example, use the TEST_CASE(){}
macro.
Any tests added will automatically be detected at build time.
API documentation generated with doxygen can be found in the documentation directory of the master branch.
The following charts illustrate the program flow this library implements for sending and receiving data from BNO08x.
These are here to aid development for anyone looking to modify, fork, or contribute.
Special thanks to the original creators of the sparkfun BNO080 library. Developing this without a reference would have been much more time consuming.
https://github.com/sparkfun/SparkFun_BNO080_Arduino_Library
Special thanks to Anton Babiy, aka hwBirdy007 for helping with debugging SPI.
https://github.com/hwBirdy007
Distributed under the MIT License. See LICENSE.md
for more information.
Myles Parfeniuk - [email protected]
Project Link: https://github.com/myles-parfeniuk/esp32_BNO08x.git