I have a custom pcb with a BNO055 imu and an esp32 pico d4.
I want to output raw acceleration, gyroscope and magnetometer data and save them to a 512mb flash memroy on the pcb.
In this example which worked on my board, the chosen output is euler angles.
How can I find a list of the different outputs options like the ones that I need?
The example uses
bno055_read_euler_hrp(` `&` `myEulerData); ` `//Update Euler data into the structure`
Serial.print(F(`"Orientation: z "));
Serial.print((float(myEulerData.h) /16.00));
if the I2C scan shows nothing possibly you have a wiring problem
could you upload a schematic showing the esp32 pico d4 connections to the BN0055, power, etc
Hi! It shows two addresses but connecting to either one does nothing.
When I use the bosch library it connects well, plus it has important features for me that the Adafruit library does not.
Lets focus on how to output accel, gyro and mag data instead of euler angles as shown above