Repo holding the hardware and code behind the controller components used in https://www.gamecraft.it/events/altctrljam-2023/
A Raspberry Pi Pico running CircuitPython acts as a HID keyboard device.
Two (or more) button pads are connected to the Pico using jumper cables. Each button pad has 4 buttons.
You can position these anywhere you want on an alternative controller. Embed them in cardboard, stick onto things, etc.
KiCad is used to design the boards. You can even see me following the tutorial in kicad-tutorial!
JLCPCB was used to print the boards. Elbow grease and lots of solder was used to assemble the boards.
The schematics can be found in dpad.
The Pico runs CircuitPython and uses Adafruit's HID library to emulate a keyboard. It's also possible to emulate a mouse and a gamepad (there are some experiments for gamepad emulation in experiments).
Code execution order:
- boot.py is run once on board startup to configure it. Here we enable keyboard emulation. If you change this you need to unplug and plug the board back in. If you want to pretend to be a mouse or gamepad this is where you do it.
- Next code.py is run to configure the button mapping and listen for events. Editing this should immediately restart the code and use your changes. If you need to change the button mappings this is where you do it.
When running the library code lives in lib
on the pico but lives in src here in GitHub.
- alt_controller_jam.configurations contains different example keyboard mappings you can use.
- alt_controller_jam.hardware contains mappings for pins.
- alt_controller_jam.keyboard contains the code which acts as a keyboard, responding to GPIO pins (button clicks) and sending out keycodes.
just is used to run the build and deployment steps.
poetry is used to manage local tool dependencies. It's also used to install libraries into your development environment, but these won't allow you to run the code on your desktop. They're primarily intended to allow for error checking.
Note that the default paths in the justfile are Apple Mac defaults, you'll need to adjust them for your machine.
- To install dependencies:
poetry install
- To build:
just build
- To flash CircuitPython onto a Pico:
- Hold down the
bootsel
button on the Pico while plugging in the USB cable into your machine - Keep holding it down until a
RPI-RP2
disk is mounted - Run
just install-firmware
- Hold down the
- To deploy the built code onto the pico:
just deploy
You can make this process a little more efficient using:
- Run
just watch
to see which disk is mounted - After plugging in the pico use
just install-firmware && just deploy && just eject
in another terminal to flash the firmware and install the code in one step.
If you're using devenv then a direnv allow
with activate it and install dependencies.