diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..66069c3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.keymap linguist-language=C diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6ae5cb8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: Build + +on: [push, pull_request, workflow_dispatch] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + - uses: actions/checkout@v4 + with: + repository: moergo-sc/zmk + ref: main + path: src + - uses: cachix/install-nix-action@v25 + with: + nix_path: nixpkgs=channel:nixos-22.05 + - uses: cachix/cachix-action@v14 + with: + name: moergo-glove80-zmk-dev + skipPush: true + - name: Build Glove80 combined firmware + run: nix-build config -o combined + - name: Copy result out of nix store + run: cp combined/glove80.uf2 glove80.uf2 + - name: Upload result + uses: actions/upload-artifact@v4 + with: + name: glove80.uf2 + path: glove80.uf2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..972873c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*~ +*.uf2 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..268b5b1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,44 @@ +FROM nixpkgs/nix:nixos-23.11 + +ENV PATH=/root/.nix-profile/bin:/usr/bin:/bin + +RUN <&2 + cd /src + git fetch origin + git checkout -q --detach "\$BRANCH" + + echo 'Building Glove80 firmware' >&2 + cd /config + nix-build ./config --arg firmware 'import /src/default.nix {}' -j2 -o /tmp/combined --show-trace + install -o "\$UID" -g "\$GID" /tmp/combined/glove80.uf2 ./glove80.uf2 +EOF + +ENTRYPOINT ["/bin/entrypoint.sh"] + +# Run build.sh to use this file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c34a03d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 MoErgo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..cf79913 --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +# MoErgo Glove80 Custom Configuration for ZMK + +![MoErgo Logo](moergo_logo.png) + +This repo is the official ZMK configuration of the MoErgo Glove80 wireless split contoured keyboard. Use it to develop your own keymap and easily build your own ZMK firmware to run on your Glove80. + +**NOTE: You can also customize the layout of your Glove80 keyboard with the Glove80 Layout Editor webapp. For most users Glove80 Layout Editor is the recommended and simpler option. More information is available at the official MoErgo Glove80 Support site (see resources below).** + +These steps will get you using your keymap on your keyboard in the fastest time possible. It uses the GitHub Actions feature to build your firmware online. + +If you are looking to dig deeper into ZMK and develop new functionality, it is recommended to follow the steps of installing ZMK as found on the official ZMK documentation site (linked below). + +## Resources +- The [official MoErgo Glove80 Support](https://moergo.com/glove80-support) web site. Glove80 documentation and other technical resources. +- The [official MoErgo Discord Server](https://moergo.com/discord). Instant conversations with other Glove80 users. + +- The [official ZMK Documentation](https://zmk.dev/docs) web site. Find the answers to many of your questions about ZMK Firmware. +- The [official ZMK Discord Server](https://discord.gg/8cfMkQksSB). Instant conversations with other ZMK developers and users. Great technical resource! + +- The [official Glove80 ZMK Distribution](https://github.com/moergo-sc/zmk). Repositiory for ZMK firmware customized for Glove80. + +## Instructions +1. Log into, or sign up for, your personal GitHub account. +2. Create your own repository using this repository as a template ([instructions](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template)) and check it out on your local computer. +3. Edit the keymap file(s) to suit your needs +4. Commit and push your changes to your personal repo. Upon pushing it, GitHub Actions will start building a new version of your firmware with the updated keymap. + +## Firmware Files +To locate your firmware files and reflash your Glove80... +1. log into GitHub and navigate to your personal config repository you just uploaded your keymap changes to. +2. Click "Actions" in the main navigation, and in the left navigation click the "Build" link. +3. Select the desired workflow run in the centre area of the page (based on date and time of the build you wish to use). You can also start a new build from this page by clicking the "Run workflow" button. +4. After clicking the desired workflow run, you should be presented with a section at the bottom of the page called "Artifacts". This section contains the results of your build, in a file called "glove80.uf2" +5. Download the glove80.uf2 +6. Flash the firmware to Glove80 according to the user documentation on the official Glove80 Glove80 Support website (linked above) + +Your keyboard is now ready to use. diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..73249c4 --- /dev/null +++ b/build.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +set -euo pipefail + +IMAGE=glove80-zmk-config-docker +BRANCH="${1:-main}" + +docker build -t "$IMAGE" . +docker run --rm -v "$PWD:/config" -e UID="$(id -u)" -e GID="$(id -g)" -e BRANCH="$BRANCH" "$IMAGE" diff --git a/config/default.nix b/config/default.nix new file mode 100644 index 0000000..c781cb6 --- /dev/null +++ b/config/default.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} +, firmware ? import ../src {} +}: + +let + config = ./.; + + glove80_left = firmware.zmk.override { board = "glove80_lh"; keymap = "${config}/glove80.keymap"; kconfig = "${config}/glove80.conf"; }; + glove80_right = firmware.zmk.override { board = "glove80_rh"; keymap = "${config}/glove80.keymap"; kconfig = "${config}/glove80.conf"; }; + +in firmware.combine_uf2 glove80_left glove80_right diff --git a/config/glove80.conf b/config/glove80.conf new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/config/glove80.conf @@ -0,0 +1 @@ + diff --git a/config/glove80.keymap b/config/glove80.keymap new file mode 100644 index 0000000..6f82cc9 --- /dev/null +++ b/config/glove80.keymap @@ -0,0 +1,145 @@ +/* + * Copyright (c) 2020 The ZMK Contributors + * + * SPDX-License-Identifier: MIT + */ + +#include +#include +#include +#include +#include +#include + +#define HYPER LC(LS(LG(LALT))) + +// layers +#define DEFAULT 0 +#define LOWER 1 +#define MAGIC 2 +#define FACTORY_TEST 3 + +/ { + behaviors { + // For the "layer" key, it'd nice to be able to use it as either a shift or a toggle. + // Configure it as a tap dance, so the first tap (or hold) is a &mo and the second tap is a &to + layer_td: tap_dance_0 { + compatible = "zmk,behavior-tap-dance"; + label = "LAYER_TAP_DANCE"; + #binding-cells = <0>; + tapping-term-ms = <200>; + bindings = <&mo LOWER>, <&to LOWER>; + }; + + magic: magic_hold_tap { + compatible = "zmk,behavior-hold-tap"; + label = "MAGIC_HOLD_TAP"; + #binding-cells = <2>; + flavor = "tap-preferred"; + tapping-term-ms = <200>; + bindings = <&mo>, <&rgb_ug_status_macro>; + }; + }; + + macros { + rgb_ug_status_macro: rgb_ug_status_macro_0 { + label = "RGB_UG_STATUS"; + compatible = "zmk,behavior-macro"; + #binding-cells = <0>; + bindings + = <&rgb_ug RGB_STATUS>; + }; + + bt_0: bt_profile_macro_0 { + label = "BT_0"; + compatible = "zmk,behavior-macro"; + #binding-cells = <0>; + bindings + = <&out OUT_BLE>, + <&bt BT_SEL 0>; + }; + + bt_1: bt_profile_macro_1 { + label = "BT_1"; + compatible = "zmk,behavior-macro"; + #binding-cells = <0>; + bindings + = <&out OUT_BLE>, + <&bt BT_SEL 1>; + }; + + bt_2: bt_profile_macro_2 { + label = "BT_2"; + compatible = "zmk,behavior-macro"; + #binding-cells = <0>; + bindings + = <&out OUT_BLE>, + <&bt BT_SEL 2>; + }; + + bt_3: bt_profile_macro_3 { + label = "BT_3"; + compatible = "zmk,behavior-macro"; + #binding-cells = <0>; + bindings + = <&out OUT_BLE>, + <&bt BT_SEL 3>; + }; + }; + + keymap { + compatible = "zmk,keymap"; + + default_layer { + // --------------------------------------------------------------------------------------------------------------------------------- + // | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | + // | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | + // | TAB | Q | W | E | R | T | | Y | U | I | O | P | \ | + // | ESC | A | S | D | F | G | | H | J | K | L | ; | ' | + // | ` | Z | X | C | V | B | LSHFT | LCTRL | LOWER | | LGUI | RCTRL | RSHFT | N | M | , | . | / | PGUP | + // | MAGIC | HOME| END | LEFT | RIGHT| | BSPC | DEL | LALT | | RALT | RET | SPACE | | UP | DOWN | [ | ] | PGDN | + + bindings = < + &kp F1 &kp F2 &kp F3 &kp F4 &kp F5 &kp F6 &kp F7 &kp F8 &kp F9 &kp F10 + &kp EQUAL &kp N1 &kp N2 &kp N3 &kp N4 &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &kp N0 &kp MINUS + &kp TAB &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp BSLH + &kp ESC &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp SQT + &kp GRAVE &kp Z &kp X &kp C &kp V &kp B &kp LSHFT &kp LCTRL &layer_td &kp LGUI &kp RCTRL &kp RSHFT &kp N &kp M &kp COMMA &kp DOT &kp FSLH &kp PG_UP + &magic MAGIC 0 &kp HOME &kp END &kp LEFT &kp RIGHT &kp BSPC &kp DEL &kp LALT &kp RALT &kp RET &kp SPACE &kp UP &kp DOWN &kp LBKT &kp RBKT &kp PG_DN + >; + }; + + lower_layer { + bindings = < + &kp C_BRI_DN &kp C_BRI_UP &kp C_PREV &kp C_NEXT &kp C_PP &kp C_MUTE &kp C_VOL_DN &kp C_VOL_UP &none &kp PAUSE_BREAK + &trans &none &none &none &none &kp HOME &kp LPAR &kp KP_NUM &kp KP_EQUAL &kp KP_DIVIDE &kp KP_MULTIPLY &kp PSCRN + &trans &none &none &kp UP &none &kp END &kp RPAR &kp KP_N7 &kp KP_N8 &kp KP_N9 &kp KP_MINUS &kp SLCK + &trans &none &kp LEFT &kp DOWN &kp RIGHT &kp PG_UP &kp PRCNT &kp KP_N4 &kp KP_N5 &kp KP_N6 &kp KP_PLUS &none + &trans &kp K_CMENU &none &kp F11 &kp F12 &kp PG_DN &trans &trans &to DEFAULT &trans &trans &trans &kp COMMA &kp KP_N1 &kp KP_N2 &kp KP_N3 &kp KP_ENTER &trans + &trans &kp CAPS &kp INS &kp F11 &kp F12 &trans &trans &trans &trans &trans &trans &kp KP_N0 &kp KP_N0 &kp KP_DOT &kp KP_ENTER &trans + >; + }; + + magic_layer { + bindings = < + &bt BT_CLR &none &none &none &none &none &none &none &none &bt BT_CLR_ALL + &none &none &none &none &none &none &none &none &none &none &none &none + &none &rgb_ug RGB_SPI &rgb_ug RGB_SAI &rgb_ug RGB_HUI &rgb_ug RGB_BRI &rgb_ug RGB_TOG &none &none &none &none &none &none + &bootloader &rgb_ug RGB_SPD &rgb_ug RGB_SAD &rgb_ug RGB_HUD &rgb_ug RGB_BRD &rgb_ug RGB_EFF &none &none &none &none &none &bootloader + &sys_reset &none &none &none &none &none &bt_2 &bt_3 &none &none &none &none &none &none &none &none &none &sys_reset + &none &none &none &none &none &bt_0 &bt_1 &out OUT_USB &none &none &none &none &none &none &none &to FACTORY_TEST + >; + }; + + factory_test_layer { + bindings = < + &kp N0 &kp N6 &kp N2 &kp N8 &kp N4 &kp N4 &kp N8 &kp N2 &kp N6 &kp N0 + &kp N1 &kp N7 &kp N3 &kp N9 &kp N5 &kp N0 &kp N0 &kp N5 &kp N9 &kp N3 &kp N7 &kp N1 + &kp N2 &kp N8 &kp N4 &kp N0 &kp N6 &kp N1 &kp N1 &kp N6 &kp N0 &kp N4 &kp N8 &kp N2 + &kp N3 &kp N9 &kp N5 &kp N1 &kp N7 &kp N2 &kp N2 &kp N7 &kp N1 &kp N5 &kp N9 &kp N3 + &kp N4 &kp N0 &kp N6 &kp N2 &kp N8 &kp N3 &kp N4 &kp N5 &kp N6 &kp N6 &kp N5 &kp N4 &kp N3 &kp N8 &kp N2 &kp N6 &kp N0 &kp N4 + &kp N5 &kp N1 &kp N7 &kp N3 &kp N9 &kp N7 &kp N8 &kp N9 &kp N9 &kp N8 &kp N7 &kp N9 &kp N3 &kp N7 &kp N1 &kp N5 + >; + }; + }; +}; diff --git a/config/info.json b/config/info.json new file mode 100644 index 0000000..03d1ad2 --- /dev/null +++ b/config/info.json @@ -0,0 +1,93 @@ +{ + "layouts": { + "LAYOUT": { + "layout": [ + { "label": "L_C6R1", "row": 0, "col": 0, "x": 0, "y": 0.5 }, + { "label": "L_C5R1", "row": 0, "col": 1, "x": 1, "y": 0.5 }, + { "label": "L_C4R1", "row": 0, "col": 2, "x": 2, "y": 0 }, + { "label": "L_C3R1", "row": 0, "col": 3, "x": 3, "y": 0 }, + { "label": "L_C2R1", "row": 0, "col": 4, "x": 4, "y": 0 }, + { "label": "R_C2R1", "row": 0, "col": 13, "x": 13, "y": 0 }, + { "label": "R_C3R1", "row": 0, "col": 14, "x": 14, "y": 0 }, + { "label": "R_C4R1", "row": 0, "col": 15, "x": 15, "y": 0 }, + { "label": "R_C5R1", "row": 0, "col": 16, "x": 16, "y": 0.5 }, + { "label": "R_C6R1", "row": 0, "col": 17, "x": 17, "y": 0.5 }, + + { "label": "L_C6R2", "row": 1, "col": 0, "x": 0, "y": 1.5 }, + { "label": "L_C5R2", "row": 1, "col": 1, "x": 1, "y": 1.5 }, + { "label": "L_C4R2", "row": 1, "col": 2, "x": 2, "y": 1 }, + { "label": "L_C3R2", "row": 1, "col": 3, "x": 3, "y": 1 }, + { "label": "L_C2R2", "row": 1, "col": 4, "x": 4, "y": 1 }, + { "label": "L_C1R2", "row": 1, "col": 5, "x": 5, "y": 1 }, + { "label": "R_C1R2", "row": 1, "col": 12, "x": 12, "y": 1 }, + { "label": "R_C2R2", "row": 1, "col": 13, "x": 13, "y": 1 }, + { "label": "R_C3R2", "row": 1, "col": 14, "x": 14, "y": 1 }, + { "label": "R_C4R2", "row": 1, "col": 15, "x": 15, "y": 1 }, + { "label": "R_C5R2", "row": 1, "col": 16, "x": 16, "y": 1.5 }, + { "label": "R_C6R2", "row": 1, "col": 17, "x": 17, "y": 1.5 }, + + { "label": "L_C6R3", "row": 2, "col": 0, "x": 0, "y": 2.5 }, + { "label": "L_C5R3", "row": 2, "col": 1, "x": 1, "y": 2.5 }, + { "label": "L_C4R3", "row": 2, "col": 2, "x": 2, "y": 2 }, + { "label": "L_C3R3", "row": 2, "col": 3, "x": 3, "y": 2 }, + { "label": "L_C2R3", "row": 2, "col": 4, "x": 4, "y": 2 }, + { "label": "L_C1R3", "row": 2, "col": 5, "x": 5, "y": 2 }, + { "label": "R_C1R3", "row": 2, "col": 12, "x": 12, "y": 2 }, + { "label": "R_C2R3", "row": 2, "col": 13, "x": 13, "y": 2 }, + { "label": "R_C3R3", "row": 2, "col": 14, "x": 14, "y": 2 }, + { "label": "R_C4R3", "row": 2, "col": 15, "x": 15, "y": 2 }, + { "label": "R_C5R3", "row": 2, "col": 16, "x": 16, "y": 2.5 }, + { "label": "R_C6R3", "row": 2, "col": 17, "x": 17, "y": 2.5 }, + + { "label": "L_C6R4", "row": 3, "col": 0, "x": 0, "y": 3.5 }, + { "label": "L_C5R4", "row": 3, "col": 1, "x": 1, "y": 3.5 }, + { "label": "L_C4R4", "row": 3, "col": 2, "x": 2, "y": 3 }, + { "label": "L_C3R4", "row": 3, "col": 3, "x": 3, "y": 3 }, + { "label": "L_C2R4", "row": 3, "col": 4, "x": 4, "y": 3 }, + { "label": "L_C1R4", "row": 3, "col": 5, "x": 5, "y": 3 }, + { "label": "R_C1R4", "row": 3, "col": 12, "x": 12, "y": 3 }, + { "label": "R_C2R4", "row": 3, "col": 13, "x": 13, "y": 3 }, + { "label": "R_C3R4", "row": 3, "col": 14, "x": 14, "y": 3 }, + { "label": "R_C4R4", "row": 3, "col": 15, "x": 15, "y": 3 }, + { "label": "R_C5R4", "row": 3, "col": 16, "x": 16, "y": 3.5 }, + { "label": "R_C6R4", "row": 3, "col": 17, "x": 17, "y": 3.5 }, + + { "label": "L_C6R5", "row": 4, "col": 0, "x": 0, "y": 4.5 }, + { "label": "L_C5R5", "row": 4, "col": 1, "x": 1, "y": 4.5 }, + { "label": "L_C4R5", "row": 4, "col": 2, "x": 2, "y": 4 }, + { "label": "L_C3R5", "row": 4, "col": 3, "x": 3, "y": 4 }, + { "label": "L_C2R5", "row": 4, "col": 4, "x": 4, "y": 4 }, + { "label": "L_C1R5", "row": 4, "col": 5, "x": 5, "y": 4 }, + { "label": "L_T1", "row": 4, "col": 6, "x": 6.4, "y": 4, "r": 20, "rx": 4 }, + { "label": "L_T2", "row": 4, "col": 7, "x": 7.8, "y": 3.3, "r": 30, "rx": 4 }, + { "label": "L_T3", "row": 4, "col": 8, "x": 10.1, "y": 1.5, "r": 45, "rx": 4 }, + { "label": "R_T3", "row": 4, "col": 9, "x": 7, "y": 1.5, "r": -45, "rx": 14 }, + { "label": "R_T2", "row": 4, "col": 10, "x": 9.3, "y": 3.3, "r": -30, "rx": 14 }, + { "label": "R_T1", "row": 4, "col": 11, "x": 10.7, "y": 4, "r": -20, "rx": 14 }, + { "label": "R_C1R5", "row": 4, "col": 12, "x": 12, "y": 4 }, + { "label": "R_C2R5", "row": 4, "col": 13, "x": 13, "y": 4 }, + { "label": "R_C3R5", "row": 4, "col": 14, "x": 14, "y": 4 }, + { "label": "R_C4R5", "row": 4, "col": 15, "x": 15, "y": 4 }, + { "label": "R_C5R5", "row": 4, "col": 16, "x": 16, "y": 4.5 }, + { "label": "R_C6R5", "row": 4, "col": 17, "x": 17, "y": 4.5 }, + + { "label": "L_C6R6", "row": 5, "col": 0, "x": 0, "y": 5.5 }, + { "label": "L_C5R6", "row": 5, "col": 1, "x": 1, "y": 5.5 }, + { "label": "L_C4R6", "row": 5, "col": 2, "x": 2, "y": 5 }, + { "label": "L_C3R6", "row": 5, "col": 3, "x": 3, "y": 5 }, + { "label": "L_C2R6", "row": 5, "col": 4, "x": 4, "y": 5 }, + { "label": "L_T4", "row": 5, "col": 6, "x": 5.3, "y": 5.4, "r": 15, "rx": 4 }, + { "label": "L_T5", "row": 5, "col": 7, "x": 6.6, "y": 5, "r": 25, "rx": 4 }, + { "label": "L_T6", "row": 5, "col": 8, "x": 9, "y": 3.2, "r": 45, "rx": 4 }, + { "label": "R_T6", "row": 5, "col": 9, "x": 8, "y": 3.2, "r": -45, "rx": 14 }, + { "label": "R_T5", "row": 5, "col": 10, "x": 10.4, "y": 5, "r": -25, "rx": 14 }, + { "label": "R_T4", "row": 5, "col": 11, "x": 11.7, "y": 5.4, "r": -15, "rx": 14 }, + { "label": "R_C2R6", "row": 5, "col": 13, "x": 13, "y": 5 }, + { "label": "R_C3R6", "row": 5, "col": 14, "x": 14, "y": 5 }, + { "label": "R_C4R6", "row": 5, "col": 15, "x": 15, "y": 5 }, + { "label": "R_C5R6", "row": 5, "col": 16, "x": 16, "y": 5.5 }, + { "label": "R_C6R6", "row": 5, "col": 17, "x": 17, "y": 5.5 } + ] + } + } +} diff --git a/config/keymap.json b/config/keymap.json new file mode 100644 index 0000000..2a7c903 --- /dev/null +++ b/config/keymap.json @@ -0,0 +1 @@ +{"keyboard":"glove80","keymap":"default","layout":"LAYOUT","layer_names":["base","fn"],"layers":[[{"value":"&kp","params":[{"value":"F1","params":[]}]},{"value":"&kp","params":[{"value":"F2","params":[]}]},{"value":"&kp","params":[{"value":"F3","params":[]}]},{"value":"&kp","params":[{"value":"F4","params":[]}]},{"value":"&kp","params":[{"value":"F5","params":[]}]},{"value":"&kp","params":[{"value":"F6","params":[]}]},{"value":"&kp","params":[{"value":"F7","params":[]}]},{"value":"&kp","params":[{"value":"F8","params":[]}]},{"value":"&kp","params":[{"value":"F9","params":[]}]},{"value":"&kp","params":[{"value":"F10","params":[]}]},{"value":"&kp","params":[{"value":"EQUAL","params":[]}]},{"value":"&kp","params":[{"value":"N1","params":[]}]},{"value":"&kp","params":[{"value":"N2","params":[]}]},{"value":"&kp","params":[{"value":"N3","params":[]}]},{"value":"&kp","params":[{"value":"N4","params":[]}]},{"value":"&kp","params":[{"value":"N5","params":[]}]},{"value":"&kp","params":[{"value":"N6","params":[]}]},{"value":"&kp","params":[{"value":"N7","params":[]}]},{"value":"&kp","params":[{"value":"N8","params":[]}]},{"value":"&kp","params":[{"value":"N9","params":[]}]},{"value":"&kp","params":[{"value":"N0","params":[]}]},{"value":"&kp","params":[{"value":"MINUS","params":[]}]},{"value":"&kp","params":[{"value":"TAB","params":[]}]},{"value":"&kp","params":[{"value":"Q","params":[]}]},{"value":"&kp","params":[{"value":"W","params":[]}]},{"value":"&kp","params":[{"value":"E","params":[]}]},{"value":"&kp","params":[{"value":"R","params":[]}]},{"value":"&kp","params":[{"value":"T","params":[]}]},{"value":"&kp","params":[{"value":"Y","params":[]}]},{"value":"&kp","params":[{"value":"U","params":[]}]},{"value":"&kp","params":[{"value":"I","params":[]}]},{"value":"&kp","params":[{"value":"O","params":[]}]},{"value":"&kp","params":[{"value":"P","params":[]}]},{"value":"&kp","params":[{"value":"BSLH","params":[]}]},{"value":"&kp","params":[{"value":"ESC","params":[]}]},{"value":"&kp","params":[{"value":"A","params":[]}]},{"value":"&kp","params":[{"value":"S","params":[]}]},{"value":"&kp","params":[{"value":"D","params":[]}]},{"value":"&kp","params":[{"value":"F","params":[]}]},{"value":"&kp","params":[{"value":"G","params":[]}]},{"value":"&kp","params":[{"value":"H","params":[]}]},{"value":"&kp","params":[{"value":"J","params":[]}]},{"value":"&kp","params":[{"value":"K","params":[]}]},{"value":"&kp","params":[{"value":"L","params":[]}]},{"value":"&kp","params":[{"value":"SEMI","params":[]}]},{"value":"&kp","params":[{"value":"SQT","params":[]}]},{"value":"&kp","params":[{"value":"GRAVE","params":[]}]},{"value":"&kp","params":[{"value":"Z","params":[]}]},{"value":"&kp","params":[{"value":"X","params":[]}]},{"value":"&kp","params":[{"value":"C","params":[]}]},{"value":"&kp","params":[{"value":"V","params":[]}]},{"value":"&kp","params":[{"value":"B","params":[]}]},{"value":"&kp","params":[{"value":"LSHFT","params":[]}]},{"value":"&kp","params":[{"value":"LCTRL","params":[]}]},{"value":"&mo","params":[{"value":"1","params":[]}]},{"value":"&kp","params":[{"value":"LGUI","params":[]}]},{"value":"&kp","params":[{"value":"RCTRL","params":[]}]},{"value":"&kp","params":[{"value":"RSHFT","params":[]}]},{"value":"&kp","params":[{"value":"N","params":[]}]},{"value":"&kp","params":[{"value":"M","params":[]}]},{"value":"&kp","params":[{"value":"COMMA","params":[]}]},{"value":"&kp","params":[{"value":"DOT","params":[]}]},{"value":"&kp","params":[{"value":"FSLH","params":[]}]},{"value":"&kp","params":[{"value":"PG_UP","params":[]}]},{"value":"&mo","params":[{"value":"1","params":[]}]},{"value":"&kp","params":[{"value":"HOME","params":[]}]},{"value":"&kp","params":[{"value":"END","params":[]}]},{"value":"&kp","params":[{"value":"LEFT","params":[]}]},{"value":"&kp","params":[{"value":"RIGHT","params":[]}]},{"value":"&kp","params":[{"value":"BSPC","params":[]}]},{"value":"&kp","params":[{"value":"DEL","params":[]}]},{"value":"&kp","params":[{"value":"LALT","params":[]}]},{"value":"&kp","params":[{"value":"RALT","params":[]}]},{"value":"&kp","params":[{"value":"RET","params":[]}]},{"value":"&kp","params":[{"value":"SPACE","params":[]}]},{"value":"&kp","params":[{"value":"UP","params":[]}]},{"value":"&kp","params":[{"value":"DOWN","params":[]}]},{"value":"&kp","params":[{"value":"LBKT","params":[]}]},{"value":"&kp","params":[{"value":"RBKT","params":[]}]},{"value":"&kp","params":[{"value":"PG_DN","params":[]}]}],[{"value":"&bt","params":[{"value":"BT_SEL","params":[]},{"value":"0","params":[]}]},{"value":"&bt","params":[{"value":"BT_SEL","params":[]},{"value":"1","params":[]}]},{"value":"&bt","params":[{"value":"BT_SEL","params":[]},{"value":"2","params":[]}]},{"value":"&bt","params":[{"value":"BT_SEL","params":[]},{"value":"3","params":[]}]},{"value":"&bt","params":[{"value":"BT_SEL","params":[]},{"value":"4","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&kp","params":[{"value":"F11","params":[]}]},{"value":"&kp","params":[{"value":"F12","params":[]}]},{"value":"&bt","params":[{"value":"BT_CLR","params":[]}]},{"value":"&none","params":[]},{"value":"&out","params":[{"value":"OUT_USB","params":[]}]},{"value":"&out","params":[{"value":"OUT_BLE","params":[]}]},{"value":"&out","params":[{"value":"OUT_TOG","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&bootloader","params":[]},{"value":"&rgb_ug","params":[{"value":"RGB_TOG","params":[]}]},{"value":"&rgb_ug","params":[{"value":"RGB_EFF","params":[]}]},{"value":"&rgb_ug","params":[{"value":"RGB_BRI","params":[]}]},{"value":"&rgb_ug","params":[{"value":"RGB_BRD","params":[]}]},{"value":"&kp","params":[{"value":"K_VOL_UP","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&reset","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&kp","params":[{"value":"K_VOL_DN","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&ext_power","params":[{"value":"EP_ON","params":[]}]},{"value":"&ext_power","params":[{"value":"EP_OFF","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&kp","params":[{"value":"K_MUTE","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&kp","params":[{"value":"CAPS","params":[]}]},{"value":"&kp","params":[{"value":"INS","params":[]}]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]},{"value":"&none","params":[]}]]} diff --git a/moergo_logo.png b/moergo_logo.png new file mode 100644 index 0000000..5c44d35 Binary files /dev/null and b/moergo_logo.png differ