Skip to content

Instantly share code, notes, and snippets.

@probonopd
Last active October 13, 2025 06:51
Show Gist options
  • Save probonopd/2a1e8ce64142fdefe20a89d0d540ab0d to your computer and use it in GitHub Desktop.
Save probonopd/2a1e8ce64142fdefe20a89d0d540ab0d to your computer and use it in GitHub Desktop.

Revisions

  1. probonopd revised this gist Oct 13, 2025. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion yd_rp2040.md
    Original file line number Diff line number Diff line change
    @@ -28,4 +28,4 @@ https://circuitpython.org/board/vcc_gnd_yd_rp2040/

    It has built in `board.NEOPIXEL` and `board.BUTTON` pins.

    __NOTE:__ As described in https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel/issues/167, turns out that the pads labeled "R58" need to be bridged (soldered) for it to work.
    __NOTE:__ As described in https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel/issues/167, turns out that the pads labeled "RGB" (hard to read, could also be "R58") need to be bridged (soldered) for it to work.
  2. probonopd revised this gist Feb 2, 2025. 1 changed file with 5 additions and 0 deletions.
    5 changes: 5 additions & 0 deletions yd_rp2040.md
    Original file line number Diff line number Diff line change
    @@ -15,6 +15,11 @@ Disadvantages:
    * Larger footprint of the PCB, no drop-in replacement
    * VBUS not available, cannot power USB devices when acting as USB host? (there is always a diode in the way?)

    Solution for USB host power is to solder a tiny piece of a resistor leg like shown here: https://github.com/No0ne/ps2x2pico?tab=readme-ov-file#troubleshooting

    ![image](https://gist.github.com/user-attachments/assets/5fcc6133-d6e3-4537-86b3-49329cdbb152)


    ## CircuitPython

    There is a custom CircuitPython build for this board:
  3. probonopd revised this gist Jan 29, 2025. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions yd_rp2040.md
    Original file line number Diff line number Diff line change
    @@ -13,6 +13,7 @@ Advantages over the Raspberry Pi Pico:

    Disadvantages:
    * Larger footprint of the PCB, no drop-in replacement
    * VBUS not available, cannot power USB devices when acting as USB host? (there is always a diode in the way?)

    ## CircuitPython

  4. probonopd revised this gist Dec 18, 2024. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion yd_rp2040.md
    Original file line number Diff line number Diff line change
    @@ -22,4 +22,4 @@ https://circuitpython.org/board/vcc_gnd_yd_rp2040/

    It has built in `board.NEOPIXEL` and `board.BUTTON` pins.

    However, as of 12/2024, I did not get the Neopixel example to work. According to https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel/issues/167, you need to "solder a bridge".
    __NOTE:__ As described in https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel/issues/167, turns out that the pads labeled "R58" need to be bridged (soldered) for it to work.
  5. probonopd revised this gist Dec 18, 2024. 1 changed file with 7 additions and 1 deletion.
    8 changes: 7 additions & 1 deletion yd_rp2040.md
    Original file line number Diff line number Diff line change
    @@ -14,6 +14,12 @@ Advantages over the Raspberry Pi Pico:
    Disadvantages:
    * Larger footprint of the PCB, no drop-in replacement

    ## CircuitPython

    There is a custom CircuitPython build for this board:

    https://circuitpython.org/board/vcc_gnd_yd_rp2040/
    https://circuitpython.org/board/vcc_gnd_yd_rp2040/

    It has built in `board.NEOPIXEL` and `board.BUTTON` pins.

    However, as of 12/2024, I did not get the Neopixel example to work. According to https://github.com/adafruit/Adafruit_CircuitPython_NeoPixel/issues/167, you need to "solder a bridge".
  6. probonopd created this gist Dec 18, 2024.
    19 changes: 19 additions & 0 deletions yd_rp2040.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    # YD-RP2040 by VCC-GND Studio

    Advantages over the Raspberry Pi Pico:
    * Inexpensive
    * 16 MB variant available
    * Added PWR power LED
    * The USB interface was changed to type-C USB
    * Added reset button to facilitate reset operation and firmware update operation
    * Added the USRkey user button (GPIO24)
    * Added RGB lights (GPIO23)
    * Change PICO's W25Q16 to W25Q32 (4M) / W25Q64 (8M) / W25Q128 (16M)
    * Easier to read silkscreen for the pins on both sides of the PCB

    Disadvantages:
    * Larger footprint of the PCB, no drop-in replacement

    There is a custom CircuitPython build for this board:

    https://circuitpython.org/board/vcc_gnd_yd_rp2040/