How to Interface nRF5340 DK with Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055 sensor.

Hi,

I'm trying to interface Adafruit 9-DOF Absolute Orientation IMU Fusion Breakout - BNO055 sensor with nRF5340 DK board. Can you please help with the code where I want to print all the sensed data on the terminal via a Bluetooth connection.

Currently I'm working on peripheral uart and central uart example, can you suggest me how can I include the code in peripheral uart which is the BNO055 sensor code?

Regards

Karthik Kumar

Parents Reply
  • Hi Kenneth,

    I tried to modify the code also added an overlay file too, but its not working. Can you help me.

    &i2c1 {
        compatible = "nordic,nrf-twim";
    	status = "okay";
    	sda-pin = < 30 >;
    	scl-pin = < 31 >;
        clock-frequency = <I2C_BITRATE_STANDARD>;  
    	
    	/* The I2C address could be one of two, here 0x76 is assumed */
    	bmi270@28 {
    		compatible = "bosch,bmi270";
    		reg = <0x28>;
    		label = "BNO055";
    	};
    };

    Regards

    Karthik Kumar

Children
Related