-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
140 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
*~ | ||
env/ | ||
result | ||
flash/target | ||
flash/debug | ||
.direnv |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/ { | ||
behaviors { | ||
lower: lower { | ||
compatible = "zmk,behavior-tap-dance"; | ||
label = "LAYER_TAP_DANCE"; | ||
#binding-cells = <0>; | ||
tapping-term-ms = <200>; | ||
bindings = <&mo LAYER_Lower>, <&to LAYER_Lower>; | ||
}; | ||
}; | ||
}; | ||
|
||
/ { | ||
macros { | ||
rgb_ug_status_macro: rgb_ug_status_macro { | ||
label = "RGB_UG_STATUS"; | ||
compatible = "zmk,behavior-macro"; | ||
#binding-cells = <0>; | ||
bindings = <&rgb_ug RGB_STATUS>; | ||
}; | ||
}; | ||
}; | ||
|
||
/ { | ||
behaviors { | ||
magic: magic { | ||
compatible = "zmk,behavior-hold-tap"; | ||
label = "MAGIC_HOLD_TAP"; | ||
#binding-cells = <2>; | ||
tapping-term-ms = <200>; | ||
bindings = <&mo>, <&rgb_ug_status_macro>; | ||
}; | ||
}; | ||
}; | ||
|
||
// Bluetooth behaviors | ||
/ { | ||
behaviors { | ||
bt_0: bt_0 { | ||
compatible = "zmk,behavior-tap-dance"; | ||
label = "BT_0"; | ||
#binding-cells = <0>; | ||
tapping-term-ms = <200>; | ||
bindings = <&bt_select_0>, <&bt BT_DISC 0>; | ||
}; | ||
bt_1: bt_1 { | ||
compatible = "zmk,behavior-tap-dance"; | ||
label = "BT_1"; | ||
#binding-cells = <0>; | ||
tapping-term-ms = <200>; | ||
bindings = <&bt_select_1>, <&bt BT_DISC 1>; | ||
}; | ||
bt_2: bt_2 { | ||
compatible = "zmk,behavior-tap-dance"; | ||
label = "BT_2"; | ||
#binding-cells = <0>; | ||
tapping-term-ms = <200>; | ||
bindings = <&bt_select_2>, <&bt BT_DISC 2>; | ||
}; | ||
bt_3: bt_3 { | ||
compatible = "zmk,behavior-tap-dance"; | ||
label = "BT_3"; | ||
#binding-cells = <0>; | ||
tapping-term-ms = <200>; | ||
bindings = <&bt_select_3>, <&bt BT_DISC 3>; | ||
}; | ||
}; | ||
macros { | ||
bt_select_0: bt_select_0 { | ||
label = "BT_SELECT_0"; | ||
compatible = "zmk,behavior-macro"; | ||
#binding-cells = <0>; | ||
bindings = <&out OUT_BLE>, <&bt BT_SEL 0>; | ||
}; | ||
bt_select_1: bt_select_1 { | ||
label = "BT_SELECT_1"; | ||
compatible = "zmk,behavior-macro"; | ||
#binding-cells = <0>; | ||
bindings = <&out OUT_BLE>, <&bt BT_SEL 1>; | ||
}; | ||
bt_select_2: bt_select_2 { | ||
label = "BT_SELECT_2"; | ||
compatible = "zmk,behavior-macro"; | ||
#binding-cells = <0>; | ||
bindings = <&out OUT_BLE>, <&bt BT_SEL 2>; | ||
}; | ||
bt_select_3: bt_select_3 { | ||
label = "BT_SELECT_3"; | ||
compatible = "zmk,behavior-macro"; | ||
#binding-cells = <0>; | ||
bindings = <&out OUT_BLE>, <&bt BT_SEL 3>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#include "zmk-helpers/key-labels/glove80.h" | ||
|
||
#define KEYS_L LC1 LC2 LC3 LC4 LC5 LN0 LN1 LN2 LN3 LN4 LN5 LT0 LT1 LT2 LT3 LT4 LT5 LM0 LM1 LM2 LM3 LM4 LM5 LB0 LB1 LB2 LB3 LB4 LB5 LF1 LF2 LF3 LF4 LF5 | ||
#define KEYS_R RC1 RC2 RC3 RC4 RC5 RN0 RN1 RN2 RN3 RN4 RN5 RT0 RT1 RT2 RT3 RT4 RT5 RM0 RM1 RM2 RM3 RM4 RM5 RB0 RB1 RB2 RB3 RB4 RB5 RF1 RF2 RF3 RF4 RF5 | ||
#define THUMBS LH0 LH1 LH2 LH3 LH4 LH5 RH0 RH1 RH2 RH3 RH4 RH5 |
Oops, something went wrong.