commit
f4f265c57e
5 changed files with 118 additions and 0 deletions
10
app/boards/shields/romac/Kconfig.defconfig
Normal file
10
app/boards/shields/romac/Kconfig.defconfig
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Copyright (c) 2020 Pete Johansen, Richard Jones
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
if SHIELD_ROMAC
|
||||
|
||||
config ZMK_KEYBOARD_NAME
|
||||
default "RoMac"
|
||||
|
||||
endif
|
||||
|
5
app/boards/shields/romac/Kconfig.shield
Normal file
5
app/boards/shields/romac/Kconfig.shield
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Copyright (c) 2020 Pete Johansen, Richard Jones
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
config SHIELD_ROMAC
|
||||
def_bool $(shields_list_contains,romac)
|
0
app/boards/shields/romac/romac.conf
Normal file
0
app/boards/shields/romac/romac.conf
Normal file
46
app/boards/shields/romac/romac.keymap
Normal file
46
app/boards/shields/romac/romac.keymap
Normal file
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* Copyright (c) 2020 Pete Johansen, Richard Jones
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
#include <behaviors.dtsi>
|
||||
#include <dt-bindings/zmk/keys.h>
|
||||
|
||||
/ {
|
||||
keymap {
|
||||
compatible = "zmk,keymap";
|
||||
|
||||
default_layer {
|
||||
// -------------------
|
||||
// | 7 | 8 | 9 |
|
||||
// | 4 | 5 | 6 |
|
||||
// | 1 | 2 | 3 |
|
||||
// | MO(1) | 0 | . |
|
||||
// ----------------------
|
||||
bindings = <
|
||||
&kp NUM_7 &kp NUM_8 &kp NUM_9
|
||||
&kp NUM_4 &kp NUM_5 &kp NUM_6
|
||||
&kp NUM_1 &kp NUM_2 &kp NUM_3
|
||||
&mo 1 &kp NUM_0 &kp DOT
|
||||
>;
|
||||
};
|
||||
|
||||
nav_layer {
|
||||
// -----------------------
|
||||
// | _ | HOME | PGUP |
|
||||
// | _ | END | PGDN |
|
||||
// | _ | _ | _ |
|
||||
// | _ | _ | RET |
|
||||
// -----------------------
|
||||
bindings = <
|
||||
&trans &kp HOME &kp PGUP
|
||||
&trans &kp END &kp PGDN
|
||||
&trans &trans &trans
|
||||
&trans &trans &kp RET
|
||||
>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
57
app/boards/shields/romac/romac.overlay
Normal file
57
app/boards/shields/romac/romac.overlay
Normal file
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
* Copyright (c) 2020 Pete Johansen, Richard Jones
|
||||
*
|
||||
* 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 = <3>;
|
||||
rows = <4>;
|
||||
// | SW1 | SW2 | SW3 |
|
||||
// | SW4 | SW5 | SW6 |
|
||||
// | SW7 | SW8 | SW9 |
|
||||
// | SW10 | SW11 | SW12 |
|
||||
map = <
|
||||
RC(0,0) RC(0,1) RC(0,2)
|
||||
RC(1,0) RC(1,1) RC(1,2)
|
||||
RC(2,0) RC(2,1) RC(2,2)
|
||||
RC(3,0) RC(3,1) RC(3,2)
|
||||
>;
|
||||
};
|
||||
|
||||
kscan0: kscan {
|
||||
compatible = "zmk,kscan-gpio-matrix";
|
||||
label = "KSCAN";
|
||||
|
||||
diode-direction = "col2row";
|
||||
row-gpios
|
||||
= <&pro_micro_d 4 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&pro_micro_d 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&pro_micro_d 6 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
, <&pro_micro_d 7 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>
|
||||
;
|
||||
|
||||
col-gpios
|
||||
= <&pro_micro_a 0 GPIO_ACTIVE_HIGH>
|
||||
, <&pro_micro_d 15 GPIO_ACTIVE_HIGH>
|
||||
, <&pro_micro_d 14 GPIO_ACTIVE_HIGH>
|
||||
;
|
||||
|
||||
};
|
||||
|
||||
bt_unpair_combo: bt_unpair_combo {
|
||||
compatible = "zmk,bt-unpair-combo";
|
||||
key-positions = <0 11>;
|
||||
};
|
||||
|
||||
};
|
||||
|
Loading…
Reference in a new issue