-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
76 additions
and
105 deletions.
There are no files selected for viewing
Empty file.
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,16 @@ | ||
if SHIELD_PAWS_LEFT | ||
|
||
config ZMK_KEYBOARD_NAME | ||
default "Split Paws Keyboard" | ||
|
||
config ZMK_SPLIT_ROLE_CENTRAL | ||
default y | ||
|
||
endif | ||
|
||
if SHIELD_PAWS_LEFT || SHIELD_PAWS_RIGHT | ||
|
||
config ZMK_SPLIT | ||
default y | ||
|
||
endif |
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,4 @@ | ||
config SHIELD_PAWS_LEFT | ||
def_bool $(shields_list_contains,paws_left) | ||
config SHIELD_PAWS_RIGHT | ||
def_bool $(shields_list_contains,paws_right) |
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,48 @@ | ||
#include <dt-bindings/zmk/matrix_transform.h> | ||
|
||
/ { | ||
|
||
chosen { | ||
zmk,kscan = &kscan0; | ||
zmk,matrix-transform = &default_transform; | ||
}; | ||
|
||
default_transform: keymap_transform_0 { | ||
compatible = "zmk,matrix-transform"; | ||
columns = <36>; | ||
rows = <1>; | ||
map = < | ||
RC(0,0) RC(0,1) RC(0,2) RC(0,3) RC(0,4) RC(0,22) RC(0,21) RC(0,20) RC(0,19) RC(0,18) | ||
RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9) RC(0,27) RC(0,26) RC(0,25) RC(0,24) RC(0,23) | ||
RC(0,10) RC(0,11) RC(0,12) RC(0,13) RC(0,14) RC(0,32) RC(0,31) RC(0,30) RC(0,29) RC(0,28) | ||
RC(0,15) RC(0,16) RC(0,17) RC(0,35) RC(0,34) RC(0,33) | ||
>; | ||
}; | ||
|
||
kscan0: kscan { | ||
compatible = "zmk,kscan-gpio-direct"; | ||
wakeup-source; | ||
|
||
input-gpios | ||
= <&pro_micro 7 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 18 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 19 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 20 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 21 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 15 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 14 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 16 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 10 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 1 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 2 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 3 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 4 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 5 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 6 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 8 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 9 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
, <&pro_micro 0 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)> | ||
; | ||
}; | ||
|
||
}; |
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 @@ | ||
#include "paws.dtsi" |
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 "paws.dtsi" | ||
|
||
&default_transform { | ||
col-offset = <18>; | ||
}; |
Empty file.
This file was deleted.
Oops, something went wrong.