mirror of https://github.com/zmkfirmware/zmk.git
23 lines
469 B
Plaintext
23 lines
469 B
Plaintext
/*
|
|
* Copyright (c) 2025 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <dt-bindings/zmk/behaviors.h>
|
|
|
|
/ {
|
|
macros {
|
|
#if ZMK_BEHAVIOR_OMIT(KTAP)
|
|
/omit-if-no-ref/
|
|
#endif
|
|
ktap: key_tap {
|
|
compatible = "zmk,behavior-macro-one-param";
|
|
#binding-cells = <1>;
|
|
display-name = "Key Tap";
|
|
bindings = <¯o_param_1to1>, <&kp MACRO_PLACEHOLDER>;
|
|
tap-ms = <30>;
|
|
};
|
|
};
|
|
};
|