From b8d568a8c2577429138e1e58cc93a352ca4cd5bd Mon Sep 17 00:00:00 2001 From: BobKaLonger Date: Wed, 21 Apr 2021 16:01:23 -0400 Subject: [PATCH] Add files via upload --- app/boards/shields/roadster/Kconfig.defconfig | 9 +++ app/boards/shields/roadster/README.md | 5 ++ app/boards/shields/roadster/roadster.conf | 1 + app/boards/shields/roadster/roadster.keymap | 68 +++++++++++++++++++ app/boards/shields/roadster/roadster.overlay | 55 +++++++++++++++ 5 files changed, 138 insertions(+) create mode 100644 app/boards/shields/roadster/Kconfig.defconfig create mode 100644 app/boards/shields/roadster/README.md create mode 100644 app/boards/shields/roadster/roadster.conf create mode 100644 app/boards/shields/roadster/roadster.keymap create mode 100644 app/boards/shields/roadster/roadster.overlay diff --git a/app/boards/shields/roadster/Kconfig.defconfig b/app/boards/shields/roadster/Kconfig.defconfig new file mode 100644 index 00000000..b1996536 --- /dev/null +++ b/app/boards/shields/roadster/Kconfig.defconfig @@ -0,0 +1,9 @@ +# Copyright (c) 2020 The ZMK Contributors +# SPDX-License-Identifier: MIT + +if SHIELD_ROADSTER + +config ZMK_KEYBOARD_NAME + default "Roadster" + +endif diff --git a/app/boards/shields/roadster/README.md b/app/boards/shields/roadster/README.md new file mode 100644 index 00000000..e905af24 --- /dev/null +++ b/app/boards/shields/roadster/README.md @@ -0,0 +1,5 @@ +Shield configuration by R. KOLLINGER III for the ROADSTER by clawboards.xyz + +I do not own the rights to the Roadster keyboard but wanted to use it with the nice!nano and had to make this +configuration myself. No guarantees that it will work, use at your own risk. I am not liable for any damage +made to your keyboard or PC by using this configuration. diff --git a/app/boards/shields/roadster/roadster.conf b/app/boards/shields/roadster/roadster.conf new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/app/boards/shields/roadster/roadster.conf @@ -0,0 +1 @@ + diff --git a/app/boards/shields/roadster/roadster.keymap b/app/boards/shields/roadster/roadster.keymap new file mode 100644 index 00000000..ab6c323c --- /dev/null +++ b/app/boards/shields/roadster/roadster.keymap @@ -0,0 +1,68 @@ +/* + * Copyright (c) 2020 The ZMK Contributors + * + * SPDX-License-Identifier: MIT + */ + +#include +#include +#include + +/ { + behaviors { + ht: hold_tap { + compatible = "zmk,behavior-hold-tap"; + label = "Hold Tap"; + #binding-cells = <2>; + tapping-term-ms = <200>; + flavor = "tap-preferred"; + bindings = <&kp>, <&kp>; + }; + }; + + keymap { + compatible = "zmk,keymap"; + + default_layer { +// ------------------------------------------------------------------------------------- +// | ESC | Q | W | E | R | T | | Y | U | I | O | P | BKSP| +// | TAB | A | S | D | F | G | | H | J | K | L | RET | +// | RSE | LSH | Z | X | C | V | | B | N | M | . | UP | RSH | +// | CTRL| SYS | ALT | SPC | SPC | SPC | LFT | DWN | RGT | + bindings = < + &kp ESC &kp Q &kp W &kp E &kp R &kp T &kp Y &kp U &kp I &kp O &kp P &kp BSPC + &ht CAPS TAB &kp A &kp S &kp D &kp F &kp G &kp H &kp J &kp K &kp L &kp RET + &to 1 &kp LSHFT &kp Z &kp X &kp C &kp V &kp B &kp N &kp M &kp DOT &kp UP &kp RSHFT + &kp LCTRL &kp LGUI &kp LALT &kp SPACE &kp SPACE &kp SPACE &kp LEFT &kp DOWN &kp RIGHT + >; + }; + + raise_layer { +// ------------------------------------------------------------------------------------- +// | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | DEL | +// | | - | = | [ | ] | \ | | | | ; | ' | | +// | RSE | | | | | | | | | | , | / | LWR | +// | | | | | | |PG_UP| HOME|PG_DN| + bindings = < + &kp GRAVE &kp N1 &kp N2 &kp N3 &kp N4 &kp N5 &kp N6 &kp N7 &kp N8 &kp N9 &kp N0 &kp DEL + &trans &kp MINUS &kp EQUAL &kp LBKT &kp RBKT &kp BSLH &trans &trans &kp SEMI &kp SQT &trans + < 2 &trans &trans &trans &trans &trans &trans &trans &trans &kp COMMA &kp FSLH < 0 + &trans &trans &trans &trans &trans &trans &kp PG_DN &kp HOME &kp PG_UP + >; + }; + + other_layer { +// ----------------------------------------------------------------------------------------- +// | | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | DEL | +// | BLDR| RST | | | | | | | | F11 | F12 | | +// | | | | | | | | | | | VDN | VUP | LWR | +// | | | | | | | PRV | PP | NXT | + bindings = < + &kp ESC &kp F1 &kp F2 &kp F3 &kp F4 &kp F5 &kp F6 &kp F7 &kp F8 &kp F9 &kp F10 &kp DEL + &bootloader &reset &trans &trans &trans &trans &trans &trans &kp F11 &kp F12 &trans + &trans &trans &trans &trans &trans &trans &trans &trans &trans &kp C_VOL_DN &kp C_VOL_UP < 1 + &trans &trans &trans &trans &trans &trans &kp C_PREV &kp C_PP &kp C_NEXT + >; + }; + }; +}; diff --git a/app/boards/shields/roadster/roadster.overlay b/app/boards/shields/roadster/roadster.overlay new file mode 100644 index 00000000..4170d651 --- /dev/null +++ b/app/boards/shields/roadster/roadster.overlay @@ -0,0 +1,55 @@ +/* + * Copyright (c) 2020 The ZMK Contributors + * + * SPDX-License-Identifier: MIT + */ + +#include + +/ { + chosen { + zmk,kscan = &kscan0; + zmk,matrix_transform = &default_transform; + }; + + default_transform: keymap_transform_0 { + compatible = "zmk,matrix-transform"; + columns = <12>; + rows = <4>; + + 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(1,0) RC(1,1) RC(1,2) RC(1,3) RC(1,4) RC(1,5) RC(1,6) RC(1,7) RC(1,8) RC(1,9) RC(1,10) +RC(2,0) RC(2,1) RC(2,2) RC(2,3) RC(2,4) RC(2,5) RC(2,6) RC(2,7) RC(2,8) RC(2,9) RC(2,10) RC(2,11) +RC(3,0) RC(3,1) RC(3,2) RC(3,3) RC(3,4) RC(3,5) RC(3,6) RC(3,7) RC(3,8) + >; + }; + + kscan0: kscan_0 { + compatible = "zmk,kscan-gpio-matrix"; + label = "KSCAN"; + diode-direction = "col2row"; + + col-gpios + = <&pro_micro_d 4 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 5 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 6 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 7 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 8 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 9 GPIO_ACTIVE_HIGH> + , <&pro_micro_a 0 GPIO_ACTIVE_HIGH> + , <&pro_micro_a 1 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 15 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 14 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 16 GPIO_ACTIVE_HIGH> + , <&pro_micro_d 10 GPIO_ACTIVE_HIGH> + ; + + row-gpios + = <&pro_micro_d 1 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> + , <&pro_micro_d 0 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> + , <&pro_micro_d 2 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> + , <&pro_micro_d 3 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)> + ; + }; +};