···11+# This file generates the GitHub Actions matrix.
22+# For simple board + shield combinations, add them to the top level board and
33+# shield arrays, for more control, add individual board + shield combinations
44+# to the `include` property. You can also use the `cmake-args` property to
55+# pass flags to the build command, `snippet` to add a Zephyr snippet, and
66+# `artifact-name` to assign a name to distinguish build outputs from each other:
77+#
88+# board: [ "nice_nano_v2" ]
99+# shield: [ "corne_left", "corne_right" ]
1010+# include:
1111+# - board: bdn9_rev2
1212+# - board: nice_nano_v2
1313+# shield: reviung41
1414+# - board: nice_nano_v2
1515+# shield: corne_left
1616+# snippet: studio-rpc-usb-uart
1717+# cmake-args: -DCONFIG_ZMK_STUDIO=y
1818+# artifact-name: corne_left_with_studio
1919+#
2020+---
2121+include:
2222+ - board: nice_nano
2323+ shield: thyme_left
2424+ - board: nice_nano
2525+ shield: thyme_right
+6
zmk-config/config/thyme.conf
···11+# Uncomment the following lines to enable the Corne RGB Underglow
22+# CONFIG_ZMK_RGB_UNDERGLOW=y
33+# CONFIG_WS2812_STRIP=y
44+55+# Uncomment the following line to enable the Corne OLED Display
66+# CONFIG_ZMK_DISPLAY=y
+56
zmk-config/config/thyme.keymap
···11+/*
22+ * Copyright (c) 2020 The ZMK Contributors
33+ *
44+ * SPDX-License-Identifier: MIT
55+ */
66+77+#include <behaviors.dtsi>
88+#include <dt-bindings/zmk/keys.h>
99+#include <dt-bindings/zmk/bt.h>
1010+1111+/ {
1212+ keymap {
1313+ compatible = "zmk,keymap";
1414+1515+ default_layer {
1616+// -----------------------------------------------------------------------------------------
1717+// | TAB | Q | W | E | R | T | | Y | U | I | O | P | BSPC |
1818+// | CTRL | A | S | D | F | G | | H | J | K | L | ; | ' |
1919+// | SHFT | Z | X | C | V | B | | N | M | , | . | / | ESC |
2020+// | GUI | LWR | SPC | | ENT | RSE | ALT |
2121+ bindings = <
2222+ &kp TAB &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp BSPC
2323+ &kp LCTRL &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp SQT
2424+ &kp LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp FSLH &kp ESC
2525+ &kp LGUI &mo 1 &kp SPACE &kp RET &mo 2 &kp RALT
2626+ >;
2727+ };
2828+ lower_layer {
2929+// -----------------------------------------------------------------------------------------
3030+// | TAB | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | BSPC |
3131+// | BTCLR| BT1 | BT2 | BT3 | BT4 | BT5 | | LFT | DWN | UP | RGT | | |
3232+// | SHFT | | | | | | | | | | | | |
3333+// | GUI | | SPC | | ENT | | ALT |
3434+ bindings = <
3535+ &kp TAB &kp N1 &kp N2 &kp N3 &kp N4 &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &kp N0 &kp BSPC
3636+ &bt BT_CLR &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &kp LEFT &kp DOWN &kp UP &kp RIGHT &trans &trans
3737+ &kp LSHFT &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans &trans
3838+ &kp LGUI &trans &kp SPACE &kp RET &trans &kp RALT
3939+ >;
4040+ };
4141+4242+ raise_layer {
4343+// -----------------------------------------------------------------------------------------
4444+// | TAB | ! | @ | # | $ | % | | ^ | & | * | ( | ) | BSPC |
4545+// | CTRL | | | | | | | - | = | [ | ] | \ | ` |
4646+// | SHFT | | | | | | | _ | + | { | } | "|" | ~ |
4747+// | GUI | | SPC | | ENT | | ALT |
4848+ bindings = <
4949+ &kp TAB &kp EXCL &kp AT &kp HASH &kp DLLR &kp PRCNT &kp CARET &kp AMPS &kp ASTRK &kp LPAR &kp RPAR &kp BSPC
5050+ &kp LCTRL &trans &trans &trans &trans &trans &kp MINUS &kp EQUAL &kp LBKT &kp RBKT &kp BSLH &kp GRAVE
5151+ &kp LSHFT &trans &trans &trans &trans &trans &kp UNDER &kp PLUS &kp LBRC &kp RBRC &kp PIPE &kp TILDE
5252+ &kp LGUI &trans &kp SPACE &kp RET &trans &kp RALT
5353+ >;
5454+ };
5555+ };
5656+};
+13
zmk-config/config/west.yml
···11+manifest:
22+ remotes:
33+ - name: zmkfirmware
44+ url-base: https://github.com/zmkfirmware
55+ # Additional modules containing boards/shields/custom code can be listed here as well
66+ # See https://docs.zephyrproject.org/3.2.0/develop/west/manifest.html#projects
77+ projects:
88+ - name: zmk
99+ remote: zmkfirmware
1010+ revision: main
1111+ import: app/west.yml
1212+ self:
1313+ path: config