4af3d272fc
* Proporly handle multiple conditonal layers w/ the same target `then-layer` values. * Move handling to work callback, to avoid re-entrance for cascading layers enabling other layers.
69 lines
1.5 KiB
Text
69 lines
1.5 KiB
Text
#include <behaviors.dtsi>
|
|
#include <dt-bindings/zmk/keys.h>
|
|
#include <dt-bindings/zmk/kscan_mock.h>
|
|
|
|
/ {
|
|
conditional_layers {
|
|
compatible = "zmk,conditional-layers";
|
|
conditional_layer_1 {
|
|
if-layers = <1 2>;
|
|
then-layer = <4>;
|
|
};
|
|
conditional_layer_2 {
|
|
if-layers = <1 3>;
|
|
then-layer = <4>;
|
|
};
|
|
};
|
|
|
|
keymap {
|
|
compatible = "zmk,keymap";
|
|
default_layer {
|
|
bindings = <
|
|
&kp A &mo 3
|
|
&mo 1 &mo 2
|
|
>;
|
|
};
|
|
layer_1 {
|
|
bindings = <
|
|
&kp B &trans
|
|
&trans &trans
|
|
>;
|
|
};
|
|
layer_2 {
|
|
bindings = <
|
|
&kp C &trans
|
|
&trans &trans
|
|
>;
|
|
};
|
|
layer_3 {
|
|
bindings = <
|
|
&kp D &trans
|
|
&trans &trans
|
|
>;
|
|
};
|
|
layer_4 {
|
|
bindings = <
|
|
&kp E &trans
|
|
&trans &trans
|
|
>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&kscan {
|
|
events = <
|
|
ZMK_MOCK_PRESS(1,0,10)
|
|
ZMK_MOCK_PRESS(1,1,10)
|
|
ZMK_MOCK_PRESS(0,0,10)
|
|
ZMK_MOCK_RELEASE(0,0,10)
|
|
ZMK_MOCK_RELEASE(1,1,10)
|
|
ZMK_MOCK_RELEASE(1,0,10)
|
|
|
|
ZMK_MOCK_PRESS(0,1,10)
|
|
ZMK_MOCK_PRESS(1,0,10)
|
|
ZMK_MOCK_PRESS(0,0,10)
|
|
ZMK_MOCK_RELEASE(0,0,10)
|
|
ZMK_MOCK_RELEASE(1,0,10)
|
|
ZMK_MOCK_RELEASE(0,1,10)
|
|
>;
|
|
};
|