I am currently using the Adafruit MCP9808 temperature sensor with my OpenMV RT1062 board and trying to have the board read the temperature from the sensor over I2C. I have the connections like this:
Vin (sensor) → 3.3V (board)
GND → GND
SCL → SCL
SDA → SDA
And the adafruit temperature sensor I am using hasing built in 10k Ohm pull up resistors. This is my code so far, and I get the poppup error when I try to read from the temperature sensor:
and I get this output from my code:
Checking I2C Conecction…
[21, 72]
Traceback (most recent call last):
File “”, line 56, in
OSError: [Errno 19] ENODEV
Any ideas what I might be doing wrong here?