2021-08-29 03:31:44 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <behaviors.dtsi>
|
|
|
|
#include <dt-bindings/zmk/keys.h>
|
|
|
|
#include <dt-bindings/zmk/bt.h>
|
2022-04-13 00:15:27 +02:00
|
|
|
#include <dt-bindings/zmk/outputs.h>
|
2021-08-29 03:31:44 +02:00
|
|
|
|
2021-09-08 09:03:05 +02:00
|
|
|
#define DEFAULT 0
|
|
|
|
#define LOWER 1
|
2022-04-15 02:08:22 +02:00
|
|
|
#define ADJUST 2
|
2021-09-08 09:03:05 +02:00
|
|
|
|
2023-02-08 02:33:35 +01:00
|
|
|
&sk {
|
|
|
|
quick-release;
|
|
|
|
};
|
|
|
|
|
2021-08-29 03:31:44 +02:00
|
|
|
/ {
|
2023-02-08 01:20:27 +01:00
|
|
|
keymap {
|
|
|
|
compatible = "zmk,keymap";
|
2021-08-29 03:31:44 +02:00
|
|
|
|
2023-02-08 01:20:27 +01:00
|
|
|
default_layer {
|
|
|
|
bindings = <
|
2023-02-08 03:29:49 +01:00
|
|
|
&kp ESC &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp RETURN
|
2023-02-08 03:11:07 +01:00
|
|
|
&sk CAPS &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp SEMI &kp SQT
|
2023-02-08 02:33:35 +01:00
|
|
|
&sk LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp COMMA &kp DOT &kp FSLH &sk RSHIFT
|
2023-02-08 03:29:49 +01:00
|
|
|
&kp LGUI &sk LCTRL &kp SPACE &mt LC(BSPC) BSPC &sk RALT &mo 1
|
2023-02-08 01:20:27 +01:00
|
|
|
>;
|
2021-09-08 09:03:05 +02:00
|
|
|
};
|
2023-02-08 01:20:27 +01:00
|
|
|
|
|
|
|
adjust_layer {
|
|
|
|
bindings = <
|
|
|
|
&kp C_MUTE &kp C_VOL_DN &kp C_VOL_UP &kp C_PREV &kp C_NEXT &kp C_PP &bt BT_SEL 0 &bt BT_SEL 1 &bt BT_SEL 2 &bt BT_SEL 3 &bt BT_SEL 4 &bt BT_CLR
|
|
|
|
&trans &trans &trans &trans &trans &trans &out OUT_BLE &out OUT_USB &trans &trans &trans &trans
|
|
|
|
&kp LSHIFT &trans &trans &trans &kp C_BRI_DN &kp C_BRI_UP &trans &trans &trans &trans &trans &kp PAUSE_BREAK
|
|
|
|
&trans &trans &trans &trans &trans &trans
|
|
|
|
>;
|
|
|
|
};
|
|
|
|
};
|
2021-08-29 03:31:44 +02:00
|
|
|
};
|