This is my modified version of the Void Ergo's firmware to use a Raspberry Pi Pico (RP2040 microcontroller) instead of the Pro Micro that was originaly used in the project
- Keyboard Maintainer: Jean Sidharta (jeansidharta@gmail.com)
- Hardware Supported: RP2040 microcontroller, commonly found in the Raspberry Pi Pico
To start using this firmware, you must first setup QMK in your computer. You can follow the steps here. After setting QMK up, you must:
- Create a new keyboard directory: run
mkdir keyboards/void_ergo_rp2040
inside your QMK directory - Enter the keyboard directory:
cd keyboards/void_ergo_rp2040
- Clone this project:
git clone https://github.com/Jeansidharta/qmk-void-ergo-RP2040.git .
.
And voilá! You can start building this project with qmk compile -kb void_ergo_rp2040 -km default
-
First, it must enter bootloader mode
- If you've never flashed it before, you can enter bootloader mode by holding the RESET button on the microcontroller while you power it on.
- If you've flashed it before with this firmware, there is a combination of keys that'll put the microcontroller in bootloader mode.
-
Make sure you're in the keyboard directory. This'd be
<QMK_DIRECTORY>/keyboards/void_ergo_rp2040
-
Run
make flash
. Note that this require super user permissions (runs sudo)
Your keyboard should automatically start working after that.