Add qmk_firmware submodule and own config

This commit is contained in:
2026-03-12 09:53:44 +01:00
commit 56848df001
8 changed files with 418 additions and 0 deletions

20
README.md Normal file
View File

@@ -0,0 +1,20 @@
# Keyboard Firmware
This repository contains the firmware for the `keyboardeeroy_jenkins` keyboard.
## Build and flash
1. Init submodules and build firmware
```bash
$ git submodule update --init
$ ./build.sh
```
2. Back up current firmware (optional)
```bash
$ picotool save --all left.bin # Left half
$ picotool save --all right.bin # Right half
```
3. Flash both keyboard halves
```bash
$ picotool load qmk_firmware/keyboardeeroy_jenkins_default.uf2 # Both halves
```