Table of Contents
Small project containing the PCB design files (KiCad project) along with the source code for different keymaps for my custom designed 60% keyboard.
This is an example of how you can create your own keymap for the oelbrd.
- Text editor of choice
- QMK
- Clone the repo
git clone https://github.com/oelburk/oelbrd.git
- Create new folder in keymaps folder
mkdir QMK/keymaps/my-keymap
- Copy default keymap (optional)
cp QMK/keymaps/default/keymap.c QMK/keymaps/my-keymap
- Edit
keymap.c
with preferred layout - Create oelbrd in QMK
qmk new-keyboard oelbrd
- Copy over contents from the QMK folder to new oelbrd directory in QMK repo, usally
../qmk_firmware/keyboards/oelbrd
- Compile the new keymap using QMK
qmk compile -kb oelbrd -kb my-keymap
- Flash new layout
There are currently some strange issues with the implemented VIA support, complaining about missing version definitons etc.
To fix this issue:
- Open
qmk_firware/quantum/via.h
- Replace the define
VIA_PROTOCOL_VERSION
at row 62VIA_PROTOCOL_VERSION 0x0009
- Re-compile your keymap.
- Enjoy VIA!
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.