zmk/app/boards/arm/bluehand/bluehand.keymap
2024-03-27 12:05:58 +00:00

48 lines
1.2 KiB
Text

/*
* Copyright (c) 2024 The ZMK Contributors
*
* SPDX-License-Identifier: MIT
*/
#include <behaviors.dtsi>
#include <dt-bindings/zmk/keys.h>
#include <dt-bindings/zmk/bt.h>
/ {
keymap {
compatible = "zmk,keymap";
default_layer {
// -------------------
// | ALT+V | F13 | F14 | ALT+A |
// | MO(1) | F15 | F16 | F17 |
// ----------------------
bindings = <
&kp LA(V) &kp F13 &kp F14 &kp LA(A)
&mo 1 &kp F15 &kp F16 &kp F17
>;
};
nav_layer {
// -----------------------
// | F18 | F19 | F20 | F21 |
// | - | MO(2) | BT_SEL 0 | BT_SEL 1|
// -----------------------
bindings = <
&kp F18 &kp F19 &kp F20 &kp F21
&trans &mo 2 &bt BT_SEL 0 &bt BT_SEL 1
>;
};
other_layer {
// -----------------------
// | - | - | - | BT_CLR SEL |
// | - | - | - | - |
// -----------------------
bindings = <
&trans &trans &trans &bt BT_CLR
&trans &trans &trans &trans
>;
};
};
};