BNO08x not showing on i2c.scan()

Breakout boards, sensors, other Adafruit kits, etc.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
victorcampos
 
Posts: 2
Joined: Fri Dec 09, 2022 6:54 am

BNO08x not showing on i2c.scan()

Post by victorcampos »

Hello!

This is my first project using Adafruit components, I have a Feather HUZZAH32 which I'm trying to connect a BNO08x to.

I'm trying wiring it for I2C usage and when running i2c.scan() it doesn't detect the BNO08x address at all and I'm wondering if it's some faulty soldering on my part or if it could be something else.

Below I share some pictures and the simple code I'm using to try to detect the board:

Code: Select all

import board
import busio

i2c = busio.I2C(board.SCL, board.SDA, frequency=80000)
i2c.try_lock()
i2c.scan()
Which outputs:

Code: Select all

>>> i2c.scan()
[]

And here is the wiring on my breadboard:

Image
Image

Any help is much appreciated :)

Cheers!

User avatar
adafruit_support_carter
 
Posts: 29189
Joined: Tue Nov 29, 2016 2:45 pm

Re: BNO08x not showing on i2c.scan()

Post by adafruit_support_carter »

It looks like you're running CircuitPython on the Feather ESP32. Where did you get the CircuitPython firmware?

User avatar
victorcampos
 
Posts: 2
Joined: Fri Dec 09, 2022 6:54 am

Re: BNO08x not showing on i2c.scan()

Post by victorcampos »


Locked
Please be positive and constructive with your questions and comments.

Return to “Other Products from Adafruit”