forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
Firmware
Adafruit CircuitPython 6.2.0 on 2021-04-05; Adafruit QT Py M0 with samd21e18
and
Adafruit CircuitPython 6.2.0 on 2021-04-05; Adafruit Feather RP2040 with rp2040
Code/REPL
import time
from board import SCL, SDA
import busio
from adafruit_neotrellis.neotrellis import NeoTrellis
from adafruit_neotrellis.multitrellis import MultiTrellis
# create the i2c object for the trellis
i2c_bus = busio.I2C(SCL, SDA)
Behavior
Traceback (most recent call last):
File "code.py", line 11, in <module>
RuntimeError: No pull up found on SDA or SCL; check your wiring
Description
- I wired the i2c port from to the fingers on the Neotrellis board since I didn't have a cable with the right connector for that connection. I checked it with a meter to verify that it is connected properly and there are no shorts.
Additional Info
- I looked at SDA and SCL with a logic analyzer and they are both low the entire time the code runs.