2020-11-12 08:09:08 +11:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
/ {
|
|
|
|
behaviors {
|
|
|
|
sk: behavior_sticky_key {
|
|
|
|
compatible = "zmk,behavior-sticky-key";
|
|
|
|
label = "STICKY_KEY";
|
|
|
|
#binding-cells = <1>;
|
|
|
|
release-after-ms = <1000>;
|
|
|
|
bindings = <&kp>;
|
|
|
|
};
|
|
|
|
sl: behavior_sticky_layer {
|
|
|
|
compatible = "zmk,behavior-sticky-key";
|
|
|
|
label = "STICKY_LAYER";
|
|
|
|
#binding-cells = <1>;
|
|
|
|
release-after-ms = <1000>;
|
|
|
|
bindings = <&mo>;
|
2020-12-13 07:35:52 +11:00
|
|
|
quick-release;
|
2020-11-12 08:09:08 +11:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|