"No pull up found" error with SCD-30 and RPi Pico W

CircuitPython on hardware including Adafruit's boards, and CircuitPython libraries using Blinka on host computers.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
VinnySauce
 
Posts: 2
Joined: Fri Mar 24, 2023 11:36 am

"No pull up found" error with SCD-30 and RPi Pico W

Post by VinnySauce »

Hi all,

I've been trying to set up my Adafruit SCD-30 breakout board with a Raspberry Pi Pico W board and CircuitPython.
I've wired up the SCD-30 using a STEMMA connector as shown here: https://imgur.com/6QNNjwa
I'd expect the following code to work:

Code: Select all

import board
import busio
i2c = busio.I2C(board.GP1, board.GP0)
However when I run this I receive the following error message:

Code: Select all

Trying GP1 and GP0:
Traceback (most recent call last):
  File "code.py", line 6, in <module>
RuntimeError: No pull up found on SDA or SCL; check your wiring
It is my understanding that the SCD-30 breakout board includes 10k pull-up resistors for the SDA and SCL lines, so I shouldn't need to add my own I2C pull-up resistors. Am I doing something wrong?

Thanks in advance!

User avatar
danhalbert
 
Posts: 4687
Joined: Tue Aug 08, 2017 12:37 pm

Re: "No pull up found" error with SCD-30 and RPi Pico W

Post by danhalbert »

From the photo, it appears that you have not soldered the header pins onto the board. You cannot get good connections without soldering the pins. The error you are seeing would be a symptom of that.

User avatar
VinnySauce
 
Posts: 2
Joined: Fri Mar 24, 2023 11:36 am

Re: "No pull up found" error with SCD-30 and RPi Pico W

Post by VinnySauce »

danhalbert wrote: Fri Mar 24, 2023 11:57 am From the photo, it appears that you have not soldered the header pins onto the board. You cannot get good connections without soldering the pins. The error you are seeing would be a symptom of that.
You're absolutely right - getting the pins at the right angle resolves this issue. Soldering iron ordered! Many thanks for your help.

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

Return to “Adafruit CircuitPython”