diff options
author | k.bigwheel <k.bigwheel+eng@gmail.com> | 2021-02-08 01:56:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-07 08:56:27 -0800 |
commit | 784a9cdca4e776150af6b996f8944af89541f2f5 (patch) | |
tree | 8567b65c6b21b47bb3719569630de1702fe2b6b7 /keyboards/earth_rover/info.json | |
parent | 3d01794b12a895b1678c51b5aea46a0def5fca3f (diff) | |
download | qmk_firmware-784a9cdca4e776150af6b996f8944af89541f2f5.tar.gz qmk_firmware-784a9cdca4e776150af6b996f8944af89541f2f5.zip |
[Keyboard] Add earth_rover keyboard (#11405)
* Just ./util/new_keyboard.sh earth_rover
* Update readme.md
* Create key layout
* Setup config.h
* Add default keymap
* Fix pins
* Update flash command
* Write info.json
* Add reset instruction
* Change bootloader setting
* Format new C files
* Empty commit for kicking CI
* Update keyboards/earth_rover/config.h
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/earth_rover/keymaps/default/keymap.c
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update readme.md
* Update keyboards/earth_rover/readme.md
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/earth_rover/info.json')
-rw-r--r-- | keyboards/earth_rover/info.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/earth_rover/info.json b/keyboards/earth_rover/info.json new file mode 100644 index 0000000000..3cfc282853 --- /dev/null +++ b/keyboards/earth_rover/info.json @@ -0,0 +1,30 @@ +{ + "keyboard_name": "earth_rover", + "url": "https://github.com/bigwheel/earth_rover", + "maintainer": "k.bigwheel", + "width": 4, + "height": 4, + "layouts": { + "LAYOUT": { + "layout": [ + {"label": "k10", "x": 1.25, "y": 0}, + {"label": "k20", "x": 2.25, "y": 0}, + + {"label": "k01", "x": 0, "y": 1.25}, + {"label": "k11", "x": 1.25, "y": 1.25}, + {"label": "k21", "x": 2.25, "y": 1.25}, + {"label": "k31", "x": 3.5, "y": 1.25}, + + {"label": "k02", "x": 0, "y": 2.25}, + {"label": "k12", "x": 1.25, "y": 2.25}, + {"label": "k22", "x": 2.25, "y": 2.25}, + {"label": "k32", "x": 3.5, "y": 2.25}, + + {"label": "k03", "x": 0, "y": 3.25}, + {"label": "k13", "x": 1.25, "y": 3.25}, + {"label": "k23", "x": 2.25, "y": 3.25}, + {"label": "k33", "x": 3.5, "y": 3.25} + ] + } + } +} |