57 lines
1.6 KiB
Text
57 lines
1.6 KiB
Text
|
/*
|
||
|
* Copyright (c) 2020 The ZMK Contributors
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
#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 = <17>;
|
||
|
rows = <1>;
|
||
|
// | SW0 | SW1 | SW2 | SW3 | SW4 |
|
||
|
// | SW5 | SW6 | SW7 | SW8 | SW9 |
|
||
|
// | SW10 | SW11 | SW12 | SW13 | SW14 |
|
||
|
// | SW15 | SW16 |
|
||
|
map = <
|
||
|
RC(0,0) RC(0,1) RC(0,2) RC(0,3) RC(0,4)
|
||
|
RC(0,5) RC(0,6) RC(0,7) RC(0,8) RC(0,9)
|
||
|
RC(0,10) RC(0,11) RC(0,12) RC(0,13) RC(0,14)
|
||
|
RC(0,15) RC(0,16)
|
||
|
>;
|
||
|
};
|
||
|
|
||
|
kscan0: kscan {
|
||
|
compatible = "zmk,kscan-gpio-direct";
|
||
|
label = "KSCAN";
|
||
|
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)>
|
||
|
;
|
||
|
};
|
||
|
|
||
|
};
|