https://github.com/freddiehaddad/crkbd
Corne Keyboard Configuration/Layout
https://github.com/freddiehaddad/crkbd
Last synced: 3 months ago
JSON representation
Corne Keyboard Configuration/Layout
- Host: GitHub
- URL: https://github.com/freddiehaddad/crkbd
- Owner: freddiehaddad
- Created: 2024-09-26T21:49:26.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-05T00:44:23.000Z (about 1 year ago)
- Last Synced: 2024-11-30T18:20:49.215Z (11 months ago)
- Language: C
- Size: 77.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quantum Mechanical Keyboard Firmware
[docs](https://docs.qmk.fm)
[repo](https://github.com/qmk/qmk_firmware)
[tool](https://config.qmk.fm/#/crkbd/rev1/LAYOUT_split_3x6_3)## Layout
Custom Overrides
```text
key | shift + key
--------+-------------
KC_PIPE | KC_QUES
KC_BKSP | KC_DEL
```Keyboard Layout

## Installation
```text
echo "PATH=$PATH:$HOME/.local/bin" >> $HOME/.zshrc
python3 -m pip install --user qmk
```## New Configuration
```text
qmk setup -H $HOME/projects/git/qmk_firmware freddiehaddad/qmk_firmware
qmk new-keymap --keyboard crkbd --keymap freddiehaddad
qmk config user.keyboard=crkbd
qmk config user.keymap=freddiehaddad
```## Existing Configuration
```text
qmk setup -H $HOME/projects/git/qmk_firmware freddiehaddad/qmk_firmware
qmk config user.keyboard=crkbd
qmk config user.keymap=freddiehaddad
```## Flashing
```text
qmk compile --clean
qmk flash --bootloader dfu
```## Miscellaneous
### Initial Flash
See: [Github Issue](https://github.com/qmk/qmk_firmware/issues/22050#issuecomment-1722308968)
```text
dfu-programmer atmega32u4 erase --force
```### Generate keymap.json
```text
qmk c2json --keyboard crkbd --keymap freddiehaddad --output keymap.json keymap.c
```