What You Need

  1. Raspberry Pi Pico
  2. USB cable to connect the Pico to your computer
  3. (Optional) Breadboard
  4. A RetroSpy N64 cable.  Do one of the following:
    • Buy a pre-made cable from the RetroSpy store
      • Skip straight to Hooking It Up
    • Make you own using the instructions under Wiring
      • N64 controller extension cable
      • Wires to solder into the controller extension cable to go to the Arduino, like these
      • Wire cutters/strippers
      • Soldering iron and solder
      • Electrical tape and/or heat shrink tubing
      • Digital multimeter or a cheap continuity tester

Software

  1. The latest Arduino software
  2. Firmware for the Pi Pico
  3. Paul Stoffregen’s ElapsedMillis library, found here.
  4. PC software to connect to the Pi Pico and display the controller

#2 and #4 above are included in the release package of RetroSpy. The firmware is located in the firmware folder and is called firmware.ino. Just run RetroSpy.exe to launch the display software.

Instructions

Wiring

This is the most time consuming piece, especially if you have never done any wiring/soldering before.

  1. First you will need to cut your controller extension cable so you can splice into the wires (consider which spot in the extension cable to cut, game system side, controller side, middle)

  1. Use your exacto knife or box cutters to very carefully cut away and peel back the plastic covering on both halves, about 2-3 inches should be good enough.
  2. Use wire strippers to strip back about 1/2 an inch of the plastic covering on each wire. In my case I had to carefully use my exacto knife because the wires were too small for the stripper, I rotated the wire against the blade until I could pull the plastic off the end.

  1. Next you will need to use a digital multimeter or continuity tester to figure out which pin on your controller plugin goes to which wire in the extension cable, make sure to write down your findings. Do NOT trust the color of the wires, the colors will vary from cable to cable.
  2. For the N64 you need to splice the Data and GND lines based on this pinout. NOTE: This diagram is looking at the male end of the controller cable.

  3. Figure out the length you need between your controller extension cable/Arduino and cut and strip a wire for each wire you are going to splice into.
  4. Solder each wire back together with your spliced wires, here’s what mine looked like when finished I soldered them this way (instead of end-to-end) because this will provide more strain relief against the small controller extension wires possibly breaking with use.

  1. After soldering everything back together, test out your extension cable with your game system to see that it still works before proceeding.
  2. Use electrical tape to tape up each wire separately.

  1. Again use electrical tape to tape all the wires back together, make sure to tape all the way back up to where the extension cable covering starts.

Hooking it up

  1. Download and install the latest release of RetroSpy.
  2. Install the latest Arduino. If you are not going to program your own board you can skip to step 4.
  3. Add Raspberry Pi Pico support to the Arduino IDE.  A tutorial can be found here.
  4. Hook up the RetroSpy cable to your Teensy according to this pinout.
    N64 PinPi Pico GPIO Pin
    3.3VNot Connected
    Data0
    GNDGND
  5. Plug the controller into the RetroSpy cable.
  6. Plug the RetroSpy cable into the N64.
  7. Plug the USB cable into the Teensy.
  8. Plug the other end of the USB cable into the display PC.

Software Setup

Once the wiring is done and everything is hooked up to your game system and computer, now for the easy part.

  1. Make sure the the USB cable between your Arduino and PC is connected and if you are not going to program your own board you can now skip to Step 10.
  2. Open the Arduino software that you installed above and go to the Tools menu and set:
    OptionValue
    BoardRaspberry Pi Pico
    Flash Size2MB (no FS)
    OptimizeOptimize Even More (-O3)
    CPU Speed250 MHz (Overclock)
    RTTIDisabled
    Stack ProtectionDisabled
    C++ ExceptionsDisabled
    Debug PortDisabled
    Debug LevelNone
    USB StackPico SDK
    IP/Bluetooth StackIPv4 Only
    Upload MethodDefault (UF2)
  3. You should now see something along the lines of “Raspberry Pi Pico…on COMX” at the bottom right corner if everything is working. If not, you may need to restart and/or replug the USB connector.
  4. Install Paul Stoffregen’s ElapsedMillis library, found here.
  5. Open common.h in the RetroSpy installation directory (by default this is C:\Program Files (x86)\RetroSpy\firmware) with any available text editor and uncomment the line //#define TP_ELAPSEDMILLIS to enable the use of the library in the RetroSpy firmware.
  6. In the Arduino software select File->Open from the menubar and open the firmware.ino file from the firmware folder of the installed RetroSpy release (by default this is C:\Program Files (x86)\RetroSpy\firmware).
  7. Now uncomment the option for MODE_N64. Note that MODE_SNES is uncommented in this image.
  8. Hit the upload button (right pointing arrow) located just under the ‘Edit’ menu, this will upload and run the software on the Teensy. You will very likely need to push the button on the board in order to program it. It should look like the following image. Once successfully uploaded, you won’t have to upload software again to the Teensy again unless you want to change controller modes.
  9. Power on your console.
  10. Run RetroSpy.exe.
  11. The selection here should be pretty straightforward, select the ‘COMX’ port that the Teensy is on, select the controller you are using, select a skin, and hit ‘Go’. If everything is hooked up correctly you should see your controller and inputs displaying.