From f7dc88ff12bd3e53a60f34426ef407e76f41409c Mon Sep 17 00:00:00 2001 From: spacehangover <51838046+spacehangover@users.noreply.github.com> Date: Tue, 5 Dec 2023 01:55:39 -0300 Subject: [PATCH 1/5] WWA Keyboards --- keyboards/wwa/helios/config.h | 20 +++++++ keyboards/wwa/helios/info.json | 44 +++++++++++++++ keyboards/wwa/helios/keymaps/default/keymap.c | 23 ++++++++ keyboards/wwa/helios/keymaps/via/keymap.c | 23 ++++++++ keyboards/wwa/helios/keymaps/via/rules.mk | 1 + keyboards/wwa/helios/readme.md | 27 +++++++++ keyboards/wwa/helios/rules.mk | 1 + keyboards/wwa/kepler/config.h | 20 +++++++ keyboards/wwa/kepler/info.json | 56 +++++++++++++++++++ keyboards/wwa/kepler/keymaps/default/keymap.c | 23 ++++++++ keyboards/wwa/kepler/keymaps/via/keymap.c | 23 ++++++++ keyboards/wwa/kepler/keymaps/via/rules.mk | 1 + keyboards/wwa/kepler/readme.md | 27 +++++++++ keyboards/wwa/kepler/rules.mk | 1 + 14 files changed, 290 insertions(+) create mode 100644 keyboards/wwa/helios/config.h create mode 100644 keyboards/wwa/helios/info.json create mode 100644 keyboards/wwa/helios/keymaps/default/keymap.c create mode 100644 keyboards/wwa/helios/keymaps/via/keymap.c create mode 100644 keyboards/wwa/helios/keymaps/via/rules.mk create mode 100644 keyboards/wwa/helios/readme.md create mode 100644 keyboards/wwa/helios/rules.mk create mode 100644 keyboards/wwa/kepler/config.h create mode 100644 keyboards/wwa/kepler/info.json create mode 100644 keyboards/wwa/kepler/keymaps/default/keymap.c create mode 100644 keyboards/wwa/kepler/keymaps/via/keymap.c create mode 100644 keyboards/wwa/kepler/keymaps/via/rules.mk create mode 100644 keyboards/wwa/kepler/readme.md create mode 100644 keyboards/wwa/kepler/rules.mk diff --git a/keyboards/wwa/helios/config.h b/keyboards/wwa/helios/config.h new file mode 100644 index 000000000000..194a32f1c2ee --- /dev/null +++ b/keyboards/wwa/helios/config.h @@ -0,0 +1,20 @@ +// Copyright 2023 spacehangover (@spacehangover) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +/* + * Feature disable options + * These options are also useful to firmware size reduction. + */ + +/* disable debug print */ +//#define NO_DEBUG + +/* disable print */ +//#define NO_PRINT + +/* disable action features */ +//#define NO_ACTION_LAYER +//#define NO_ACTION_TAPPING +//#define NO_ACTION_ONESHOT diff --git a/keyboards/wwa/helios/info.json b/keyboards/wwa/helios/info.json new file mode 100644 index 000000000000..64b201039640 --- /dev/null +++ b/keyboards/wwa/helios/info.json @@ -0,0 +1,44 @@ +{ + "manufacturer": "spacehangover", + "keyboard_name": "Helios", + "maintainer": "spacehangover", + "bootloader": "rp2040", + "diode_direction": "COL2ROW", + "features": { + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": true + }, + "matrix_pins": { + "cols": ["GP0", "GP1", "GP2", "GP3"], + "rows": ["GP4", "GP5", "GP6"] + }, + "processor": "RP2040", + "url": "", + "usb": { + "device_version": "1.0.0", + "pid": "0x0001", + "vid": "0x5757" + }, + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 0], "x": 0, "y": 0}, + {"matrix": [0, 1], "x": 1, "y": 0}, + {"matrix": [0, 2], "x": 2, "y": 0}, + {"matrix": [0, 3], "x": 3, "y": 0}, + {"matrix": [1, 0], "x": 0, "y": 1}, + {"matrix": [1, 1], "x": 1, "y": 1}, + {"matrix": [1, 2], "x": 2, "y": 1}, + {"matrix": [1, 3], "x": 3, "y": 1}, + {"matrix": [2, 0], "x": 0, "y": 2}, + {"matrix": [2, 1], "x": 1, "y": 2}, + {"matrix": [2, 2], "x": 2, "y": 2}, + {"matrix": [2, 3], "x": 3, "y": 2} + ] + } + } +} \ No newline at end of file diff --git a/keyboards/wwa/helios/keymaps/default/keymap.c b/keyboards/wwa/helios/keymaps/default/keymap.c new file mode 100644 index 000000000000..09b686cd8ab9 --- /dev/null +++ b/keyboards/wwa/helios/keymaps/default/keymap.c @@ -0,0 +1,23 @@ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┬───┐ + * │ 7 │ 8 │ 9 │ / │ + * ├───┼───┼───┼───┤ + * │ 4 │ 5 │ 6 │ * │ + * ├───┼───┼───┼───┤ + * │ 1 │ 2 │ 3 │ - │ + * ├───┼───┼───┼───┤ + * │ 0 │ . │Ent│ + │ + * └───┴───┴───┴───┘ + */ + [0] = LAYOUT( + KC_F13, KC_F14, KC_F15, KC_F16, + KC_F17, KC_F18, KC_F19, KC_F20, + KC_F21, KC_F22, KC_F23, KC_F24 + ) +}; diff --git a/keyboards/wwa/helios/keymaps/via/keymap.c b/keyboards/wwa/helios/keymaps/via/keymap.c new file mode 100644 index 000000000000..09b686cd8ab9 --- /dev/null +++ b/keyboards/wwa/helios/keymaps/via/keymap.c @@ -0,0 +1,23 @@ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┬───┐ + * │ 7 │ 8 │ 9 │ / │ + * ├───┼───┼───┼───┤ + * │ 4 │ 5 │ 6 │ * │ + * ├───┼───┼───┼───┤ + * │ 1 │ 2 │ 3 │ - │ + * ├───┼───┼───┼───┤ + * │ 0 │ . │Ent│ + │ + * └───┴───┴───┴───┘ + */ + [0] = LAYOUT( + KC_F13, KC_F14, KC_F15, KC_F16, + KC_F17, KC_F18, KC_F19, KC_F20, + KC_F21, KC_F22, KC_F23, KC_F24 + ) +}; diff --git a/keyboards/wwa/helios/keymaps/via/rules.mk b/keyboards/wwa/helios/keymaps/via/rules.mk new file mode 100644 index 000000000000..036bd6d1c3ec --- /dev/null +++ b/keyboards/wwa/helios/keymaps/via/rules.mk @@ -0,0 +1 @@ +VIA_ENABLE = yes \ No newline at end of file diff --git a/keyboards/wwa/helios/readme.md b/keyboards/wwa/helios/readme.md new file mode 100644 index 000000000000..448699a3213b --- /dev/null +++ b/keyboards/wwa/helios/readme.md @@ -0,0 +1,27 @@ +# helios + +![helios](imgur.com image replace me!) + +*A short description of the keyboard/project* + +* Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) +* Hardware Supported: *The PCBs, controllers supported* +* Hardware Availability: *Links to where you can find this hardware* + +Make example for this keyboard (after setting up your build environment): + + make helios:default + +Flashing example for this keyboard: + + make helios:default:flash + +See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). + +## Bootloader + +Enter the bootloader in 3 ways: + +* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard +* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead +* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available diff --git a/keyboards/wwa/helios/rules.mk b/keyboards/wwa/helios/rules.mk new file mode 100644 index 000000000000..6e7633bfe015 --- /dev/null +++ b/keyboards/wwa/helios/rules.mk @@ -0,0 +1 @@ +# This file intentionally left blank diff --git a/keyboards/wwa/kepler/config.h b/keyboards/wwa/kepler/config.h new file mode 100644 index 000000000000..194a32f1c2ee --- /dev/null +++ b/keyboards/wwa/kepler/config.h @@ -0,0 +1,20 @@ +// Copyright 2023 spacehangover (@spacehangover) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +/* + * Feature disable options + * These options are also useful to firmware size reduction. + */ + +/* disable debug print */ +//#define NO_DEBUG + +/* disable print */ +//#define NO_PRINT + +/* disable action features */ +//#define NO_ACTION_LAYER +//#define NO_ACTION_TAPPING +//#define NO_ACTION_ONESHOT diff --git a/keyboards/wwa/kepler/info.json b/keyboards/wwa/kepler/info.json new file mode 100644 index 000000000000..f962d632b444 --- /dev/null +++ b/keyboards/wwa/kepler/info.json @@ -0,0 +1,56 @@ +{ + "manufacturer": "spacehangover", + "keyboard_name": "Kepler", + "maintainer": "spacehangover", + "bootloader": "rp2040", + "diode_direction": "COL2ROW", + "features": { + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": true + }, + "matrix_pins": { + "cols": ["GP0", "GP1", "GP2", "GP3", "GP4", "GP5", "GP6", "GP7"], + "rows": ["GP9", "GP10", "GP11"] + }, + "processor": "RP2040", + "url": "", + "usb": { + "device_version": "1.0.0", + "pid": "0x0002", + "vid": "0x5757" + }, + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 0], "x": 0, "y": 0}, + {"matrix": [0, 1], "x": 1, "y": 0}, + {"matrix": [0, 2], "x": 2, "y": 0}, + {"matrix": [0, 3], "x": 3, "y": 0}, + {"matrix": [0, 4], "x": 4, "y": 0}, + {"matrix": [0, 5], "x": 5, "y": 0}, + {"matrix": [0, 6], "x": 6, "y": 0}, + {"matrix": [0, 7], "x": 7, "y": 0}, + {"matrix": [1, 0], "x": 0, "y": 1}, + {"matrix": [1, 1], "x": 1, "y": 1}, + {"matrix": [1, 2], "x": 2, "y": 1}, + {"matrix": [1, 3], "x": 3, "y": 1}, + {"matrix": [1, 4], "x": 4, "y": 1}, + {"matrix": [1, 5], "x": 5, "y": 1}, + {"matrix": [1, 6], "x": 6, "y": 1}, + {"matrix": [1, 7], "x": 7, "y": 1}, + {"matrix": [2, 0], "x": 0, "y": 2}, + {"matrix": [2, 1], "x": 1, "y": 2}, + {"matrix": [2, 2], "x": 2, "y": 2}, + {"matrix": [2, 3], "x": 3, "y": 2}, + {"matrix": [2, 4], "x": 4, "y": 2}, + {"matrix": [2, 5], "x": 5, "y": 2}, + {"matrix": [2, 6], "x": 6, "y": 2}, + {"matrix": [2, 7], "x": 7, "y": 2} + ] + } + } +} \ No newline at end of file diff --git a/keyboards/wwa/kepler/keymaps/default/keymap.c b/keyboards/wwa/kepler/keymaps/default/keymap.c new file mode 100644 index 000000000000..8b0b618734f8 --- /dev/null +++ b/keyboards/wwa/kepler/keymaps/default/keymap.c @@ -0,0 +1,23 @@ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┬───┐ + * │ 7 │ 8 │ 9 │ / │ + * ├───┼───┼───┼───┤ + * │ 4 │ 5 │ 6 │ * │ + * ├───┼───┼───┼───┤ + * │ 1 │ 2 │ 3 │ - │ + * ├───┼───┼───┼───┤ + * │ 0 │ . │Ent│ + │ + * └───┴───┴───┴───┘ + */ + [0] = LAYOUT( + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, + KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, + KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_F22, KC_F23, KC_F24 + ) +}; diff --git a/keyboards/wwa/kepler/keymaps/via/keymap.c b/keyboards/wwa/kepler/keymaps/via/keymap.c new file mode 100644 index 000000000000..8b0b618734f8 --- /dev/null +++ b/keyboards/wwa/kepler/keymaps/via/keymap.c @@ -0,0 +1,23 @@ +// Copyright 2023 QMK +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┬───┬───┬───┐ + * │ 7 │ 8 │ 9 │ / │ + * ├───┼───┼───┼───┤ + * │ 4 │ 5 │ 6 │ * │ + * ├───┼───┼───┼───┤ + * │ 1 │ 2 │ 3 │ - │ + * ├───┼───┼───┼───┤ + * │ 0 │ . │Ent│ + │ + * └───┴───┴───┴───┘ + */ + [0] = LAYOUT( + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, + KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, + KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_F22, KC_F23, KC_F24 + ) +}; diff --git a/keyboards/wwa/kepler/keymaps/via/rules.mk b/keyboards/wwa/kepler/keymaps/via/rules.mk new file mode 100644 index 000000000000..036bd6d1c3ec --- /dev/null +++ b/keyboards/wwa/kepler/keymaps/via/rules.mk @@ -0,0 +1 @@ +VIA_ENABLE = yes \ No newline at end of file diff --git a/keyboards/wwa/kepler/readme.md b/keyboards/wwa/kepler/readme.md new file mode 100644 index 000000000000..ae7748b2cc2e --- /dev/null +++ b/keyboards/wwa/kepler/readme.md @@ -0,0 +1,27 @@ +# kepler + +![kepler](imgur.com image replace me!) + +*A short description of the keyboard/project* + +* Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) +* Hardware Supported: *The PCBs, controllers supported* +* Hardware Availability: *Links to where you can find this hardware* + +Make example for this keyboard (after setting up your build environment): + + make kepler:default + +Flashing example for this keyboard: + + make kepler:default:flash + +See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). + +## Bootloader + +Enter the bootloader in 3 ways: + +* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard +* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead +* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available diff --git a/keyboards/wwa/kepler/rules.mk b/keyboards/wwa/kepler/rules.mk new file mode 100644 index 000000000000..6e7633bfe015 --- /dev/null +++ b/keyboards/wwa/kepler/rules.mk @@ -0,0 +1 @@ +# This file intentionally left blank From 9015c554e7b13aa81b0a09b58481b88a2bbe3c3e Mon Sep 17 00:00:00 2001 From: spacehangover <51838046+spacehangover@users.noreply.github.com> Date: Tue, 5 Dec 2023 20:21:40 -0300 Subject: [PATCH 2/5] Changes made as requested by QMK Reviewers --- keyboards/wwa/helios/config.h | 20 ------------------- keyboards/wwa/helios/keymaps/default/keymap.c | 11 ---------- keyboards/wwa/helios/keymaps/via/keymap.c | 11 ---------- keyboards/wwa/helios/readme.md | 8 ++++---- keyboards/wwa/kepler/config.h | 20 ------------------- keyboards/wwa/kepler/keymaps/default/keymap.c | 11 ---------- keyboards/wwa/kepler/keymaps/via/keymap.c | 11 ---------- keyboards/wwa/kepler/readme.md | 7 ++++--- 8 files changed, 8 insertions(+), 91 deletions(-) delete mode 100644 keyboards/wwa/helios/config.h delete mode 100644 keyboards/wwa/kepler/config.h diff --git a/keyboards/wwa/helios/config.h b/keyboards/wwa/helios/config.h deleted file mode 100644 index 194a32f1c2ee..000000000000 --- a/keyboards/wwa/helios/config.h +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2023 spacehangover (@spacehangover) -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -/* - * Feature disable options - * These options are also useful to firmware size reduction. - */ - -/* disable debug print */ -//#define NO_DEBUG - -/* disable print */ -//#define NO_PRINT - -/* disable action features */ -//#define NO_ACTION_LAYER -//#define NO_ACTION_TAPPING -//#define NO_ACTION_ONESHOT diff --git a/keyboards/wwa/helios/keymaps/default/keymap.c b/keyboards/wwa/helios/keymaps/default/keymap.c index 09b686cd8ab9..adedb063f483 100644 --- a/keyboards/wwa/helios/keymaps/default/keymap.c +++ b/keyboards/wwa/helios/keymaps/default/keymap.c @@ -4,17 +4,6 @@ #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - /* - * ┌───┬───┬───┬───┐ - * │ 7 │ 8 │ 9 │ / │ - * ├───┼───┼───┼───┤ - * │ 4 │ 5 │ 6 │ * │ - * ├───┼───┼───┼───┤ - * │ 1 │ 2 │ 3 │ - │ - * ├───┼───┼───┼───┤ - * │ 0 │ . │Ent│ + │ - * └───┴───┴───┴───┘ - */ [0] = LAYOUT( KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, diff --git a/keyboards/wwa/helios/keymaps/via/keymap.c b/keyboards/wwa/helios/keymaps/via/keymap.c index 09b686cd8ab9..adedb063f483 100644 --- a/keyboards/wwa/helios/keymaps/via/keymap.c +++ b/keyboards/wwa/helios/keymaps/via/keymap.c @@ -4,17 +4,6 @@ #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - /* - * ┌───┬───┬───┬───┐ - * │ 7 │ 8 │ 9 │ / │ - * ├───┼───┼───┼───┤ - * │ 4 │ 5 │ 6 │ * │ - * ├───┼───┼───┼───┤ - * │ 1 │ 2 │ 3 │ - │ - * ├───┼───┼───┼───┤ - * │ 0 │ . │Ent│ + │ - * └───┴───┴───┴───┘ - */ [0] = LAYOUT( KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, diff --git a/keyboards/wwa/helios/readme.md b/keyboards/wwa/helios/readme.md index 448699a3213b..f708aebea3d5 100644 --- a/keyboards/wwa/helios/readme.md +++ b/keyboards/wwa/helios/readme.md @@ -1,12 +1,12 @@ # helios -![helios](imgur.com image replace me!) +![helios](https://imgur.com/a/mXWRgCt) -*A short description of the keyboard/project* +First model of the Argentinian based keyboard manufacturer WWA * Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) -* Hardware Supported: *The PCBs, controllers supported* -* Hardware Availability: *Links to where you can find this hardware* +* Hardware Supported: RP2040 Handwired +* Hardware Availability: https://www.amazon.com/dp/B08ZSKMJJD/ref=sspa_dk_detail_6?psc=1&pd_rd_i=B08ZSKMJJD&pd_rd_w=K8K1X&content-id=amzn1.sym.08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_p=08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_r=3W158XFKMFJTGARYNNT6&pd_rd_wg=ADHNt&pd_rd_r=7e2afce9-17d9-46a7-b196-5be2ab375f40&s=pc&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEyQTU4SElNN0VVNVdXJmVuY3J5cHRlZElkPUEwNTA3MTMwMlZDSDVMVEQwQ0ZPTSZlbmNyeXB0ZWRBZElkPUEwMDgzMTI4MUE4UkxCWEpCTVk5ViZ3aWRnZXROYW1lPXNwX2RldGFpbF90aGVtYXRpYyZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU= Make example for this keyboard (after setting up your build environment): diff --git a/keyboards/wwa/kepler/config.h b/keyboards/wwa/kepler/config.h deleted file mode 100644 index 194a32f1c2ee..000000000000 --- a/keyboards/wwa/kepler/config.h +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2023 spacehangover (@spacehangover) -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -/* - * Feature disable options - * These options are also useful to firmware size reduction. - */ - -/* disable debug print */ -//#define NO_DEBUG - -/* disable print */ -//#define NO_PRINT - -/* disable action features */ -//#define NO_ACTION_LAYER -//#define NO_ACTION_TAPPING -//#define NO_ACTION_ONESHOT diff --git a/keyboards/wwa/kepler/keymaps/default/keymap.c b/keyboards/wwa/kepler/keymaps/default/keymap.c index 8b0b618734f8..7bfecd071744 100644 --- a/keyboards/wwa/kepler/keymaps/default/keymap.c +++ b/keyboards/wwa/kepler/keymaps/default/keymap.c @@ -4,17 +4,6 @@ #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - /* - * ┌───┬───┬───┬───┐ - * │ 7 │ 8 │ 9 │ / │ - * ├───┼───┼───┼───┤ - * │ 4 │ 5 │ 6 │ * │ - * ├───┼───┼───┼───┤ - * │ 1 │ 2 │ 3 │ - │ - * ├───┼───┼───┼───┤ - * │ 0 │ . │Ent│ + │ - * └───┴───┴───┴───┘ - */ [0] = LAYOUT( KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, diff --git a/keyboards/wwa/kepler/keymaps/via/keymap.c b/keyboards/wwa/kepler/keymaps/via/keymap.c index 8b0b618734f8..7bfecd071744 100644 --- a/keyboards/wwa/kepler/keymaps/via/keymap.c +++ b/keyboards/wwa/kepler/keymaps/via/keymap.c @@ -4,17 +4,6 @@ #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - /* - * ┌───┬───┬───┬───┐ - * │ 7 │ 8 │ 9 │ / │ - * ├───┼───┼───┼───┤ - * │ 4 │ 5 │ 6 │ * │ - * ├───┼───┼───┼───┤ - * │ 1 │ 2 │ 3 │ - │ - * ├───┼───┼───┼───┤ - * │ 0 │ . │Ent│ + │ - * └───┴───┴───┴───┘ - */ [0] = LAYOUT( KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_F13, KC_F14, KC_F15, KC_F16, diff --git a/keyboards/wwa/kepler/readme.md b/keyboards/wwa/kepler/readme.md index ae7748b2cc2e..4930d6fb49ef 100644 --- a/keyboards/wwa/kepler/readme.md +++ b/keyboards/wwa/kepler/readme.md @@ -1,12 +1,13 @@ # kepler -![kepler](imgur.com image replace me!) +![kepler](https://imgur.com/a/ZCKGSqf) *A short description of the keyboard/project* * Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) -* Hardware Supported: *The PCBs, controllers supported* -* Hardware Availability: *Links to where you can find this hardware* +* Hardware Supported: RP2040 Handwired +* Hardware Availability: https://www.amazon.com/dp/B08ZSKMJJD/ref=sspa_dk_detail_6?psc=1&pd_rd_i=B08ZSKMJJD&pd_rd_w=K8K1X&content-id=amzn1.sym.08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_p=08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_r=3W158XFKMFJTGARYNNT6&pd_rd_wg=ADHNt&pd_rd_r=7e2afce9-17d9-46a7-b196-5be2ab375f40&s=pc&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEyQTU4SElNN0VVNVdXJmVuY3J5cHRlZElkPUEwNTA3MTMwMlZDSDVMVEQwQ0ZPTSZlbmNyeXB0ZWRBZElkPUEwMDgzMTI4MUE4UkxCWEpCTVk5ViZ3aWRnZXROYW1lPXNwX2RldGFpbF90aGVtYXRpYyZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU= + Make example for this keyboard (after setting up your build environment): From 1c4d1e4803196a7a841ae6e7941234a72751368c Mon Sep 17 00:00:00 2001 From: spacehangover <51838046+spacehangover@users.noreply.github.com> Date: Tue, 5 Dec 2023 20:25:14 -0300 Subject: [PATCH 3/5] Changes made as requested by QMK Reviewers --- keyboards/wwa/kepler/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/keyboards/wwa/kepler/readme.md b/keyboards/wwa/kepler/readme.md index 4930d6fb49ef..586e7e0cbb8f 100644 --- a/keyboards/wwa/kepler/readme.md +++ b/keyboards/wwa/kepler/readme.md @@ -3,6 +3,7 @@ ![kepler](https://imgur.com/a/ZCKGSqf) *A short description of the keyboard/project* +Second model of the Argentinian based keyboard manufacturer WWA * Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) * Hardware Supported: RP2040 Handwired From 9a4e89e7b5267f255949dc591cd6a9eea02a33ba Mon Sep 17 00:00:00 2001 From: spacehangover <51838046+spacehangover@users.noreply.github.com> Date: Wed, 6 Dec 2023 00:48:51 -0300 Subject: [PATCH 4/5] Second revision changes as requested --- keyboards/{ => handwired}/wwa/helios/info.json | 0 .../{ => handwired}/wwa/helios/keymaps/default/keymap.c | 0 keyboards/{ => handwired}/wwa/helios/keymaps/via/keymap.c | 0 keyboards/{ => handwired}/wwa/helios/keymaps/via/rules.mk | 0 keyboards/{ => handwired}/wwa/helios/readme.md | 8 ++++---- keyboards/{ => handwired}/wwa/helios/rules.mk | 0 keyboards/{ => handwired}/wwa/kepler/info.json | 0 .../{ => handwired}/wwa/kepler/keymaps/default/keymap.c | 0 keyboards/{ => handwired}/wwa/kepler/keymaps/via/keymap.c | 0 keyboards/{ => handwired}/wwa/kepler/keymaps/via/rules.mk | 0 keyboards/{ => handwired}/wwa/kepler/readme.md | 8 ++++---- keyboards/{ => handwired}/wwa/kepler/rules.mk | 0 12 files changed, 8 insertions(+), 8 deletions(-) rename keyboards/{ => handwired}/wwa/helios/info.json (100%) rename keyboards/{ => handwired}/wwa/helios/keymaps/default/keymap.c (100%) rename keyboards/{ => handwired}/wwa/helios/keymaps/via/keymap.c (100%) rename keyboards/{ => handwired}/wwa/helios/keymaps/via/rules.mk (100%) rename keyboards/{ => handwired}/wwa/helios/readme.md (57%) rename keyboards/{ => handwired}/wwa/helios/rules.mk (100%) rename keyboards/{ => handwired}/wwa/kepler/info.json (100%) rename keyboards/{ => handwired}/wwa/kepler/keymaps/default/keymap.c (100%) rename keyboards/{ => handwired}/wwa/kepler/keymaps/via/keymap.c (100%) rename keyboards/{ => handwired}/wwa/kepler/keymaps/via/rules.mk (100%) rename keyboards/{ => handwired}/wwa/kepler/readme.md (58%) rename keyboards/{ => handwired}/wwa/kepler/rules.mk (100%) diff --git a/keyboards/wwa/helios/info.json b/keyboards/handwired/wwa/helios/info.json similarity index 100% rename from keyboards/wwa/helios/info.json rename to keyboards/handwired/wwa/helios/info.json diff --git a/keyboards/wwa/helios/keymaps/default/keymap.c b/keyboards/handwired/wwa/helios/keymaps/default/keymap.c similarity index 100% rename from keyboards/wwa/helios/keymaps/default/keymap.c rename to keyboards/handwired/wwa/helios/keymaps/default/keymap.c diff --git a/keyboards/wwa/helios/keymaps/via/keymap.c b/keyboards/handwired/wwa/helios/keymaps/via/keymap.c similarity index 100% rename from keyboards/wwa/helios/keymaps/via/keymap.c rename to keyboards/handwired/wwa/helios/keymaps/via/keymap.c diff --git a/keyboards/wwa/helios/keymaps/via/rules.mk b/keyboards/handwired/wwa/helios/keymaps/via/rules.mk similarity index 100% rename from keyboards/wwa/helios/keymaps/via/rules.mk rename to keyboards/handwired/wwa/helios/keymaps/via/rules.mk diff --git a/keyboards/wwa/helios/readme.md b/keyboards/handwired/wwa/helios/readme.md similarity index 57% rename from keyboards/wwa/helios/readme.md rename to keyboards/handwired/wwa/helios/readme.md index f708aebea3d5..9d59c6e0ef9a 100644 --- a/keyboards/wwa/helios/readme.md +++ b/keyboards/handwired/wwa/helios/readme.md @@ -1,20 +1,20 @@ # helios -![helios](https://imgur.com/a/mXWRgCt) +![helios](https://i.imgur.com/QfTTROZh.jpeg) First model of the Argentinian based keyboard manufacturer WWA * Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) * Hardware Supported: RP2040 Handwired -* Hardware Availability: https://www.amazon.com/dp/B08ZSKMJJD/ref=sspa_dk_detail_6?psc=1&pd_rd_i=B08ZSKMJJD&pd_rd_w=K8K1X&content-id=amzn1.sym.08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_p=08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_r=3W158XFKMFJTGARYNNT6&pd_rd_wg=ADHNt&pd_rd_r=7e2afce9-17d9-46a7-b196-5be2ab375f40&s=pc&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEyQTU4SElNN0VVNVdXJmVuY3J5cHRlZElkPUEwNTA3MTMwMlZDSDVMVEQwQ0ZPTSZlbmNyeXB0ZWRBZElkPUEwMDgzMTI4MUE4UkxCWEpCTVk5ViZ3aWRnZXROYW1lPXNwX2RldGFpbF90aGVtYXRpYyZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU= +* Hardware Availability: RP2040 Pico Make example for this keyboard (after setting up your build environment): - make helios:default + make handwired/wwa/helios:default Flashing example for this keyboard: - make helios:default:flash + make handwired/wwa/helios:default:flash See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). diff --git a/keyboards/wwa/helios/rules.mk b/keyboards/handwired/wwa/helios/rules.mk similarity index 100% rename from keyboards/wwa/helios/rules.mk rename to keyboards/handwired/wwa/helios/rules.mk diff --git a/keyboards/wwa/kepler/info.json b/keyboards/handwired/wwa/kepler/info.json similarity index 100% rename from keyboards/wwa/kepler/info.json rename to keyboards/handwired/wwa/kepler/info.json diff --git a/keyboards/wwa/kepler/keymaps/default/keymap.c b/keyboards/handwired/wwa/kepler/keymaps/default/keymap.c similarity index 100% rename from keyboards/wwa/kepler/keymaps/default/keymap.c rename to keyboards/handwired/wwa/kepler/keymaps/default/keymap.c diff --git a/keyboards/wwa/kepler/keymaps/via/keymap.c b/keyboards/handwired/wwa/kepler/keymaps/via/keymap.c similarity index 100% rename from keyboards/wwa/kepler/keymaps/via/keymap.c rename to keyboards/handwired/wwa/kepler/keymaps/via/keymap.c diff --git a/keyboards/wwa/kepler/keymaps/via/rules.mk b/keyboards/handwired/wwa/kepler/keymaps/via/rules.mk similarity index 100% rename from keyboards/wwa/kepler/keymaps/via/rules.mk rename to keyboards/handwired/wwa/kepler/keymaps/via/rules.mk diff --git a/keyboards/wwa/kepler/readme.md b/keyboards/handwired/wwa/kepler/readme.md similarity index 58% rename from keyboards/wwa/kepler/readme.md rename to keyboards/handwired/wwa/kepler/readme.md index 586e7e0cbb8f..480c1342715a 100644 --- a/keyboards/wwa/kepler/readme.md +++ b/keyboards/handwired/wwa/kepler/readme.md @@ -1,22 +1,22 @@ # kepler -![kepler](https://imgur.com/a/ZCKGSqf) +![kepler](https://i.imgur.com/UD1J92Eh.jpeg) *A short description of the keyboard/project* Second model of the Argentinian based keyboard manufacturer WWA * Keyboard Maintainer: [spacehangover](https://github.com/spacehangover) * Hardware Supported: RP2040 Handwired -* Hardware Availability: https://www.amazon.com/dp/B08ZSKMJJD/ref=sspa_dk_detail_6?psc=1&pd_rd_i=B08ZSKMJJD&pd_rd_w=K8K1X&content-id=amzn1.sym.08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_p=08ba9b95-1385-44b0-b652-c46acdff309c&pf_rd_r=3W158XFKMFJTGARYNNT6&pd_rd_wg=ADHNt&pd_rd_r=7e2afce9-17d9-46a7-b196-5be2ab375f40&s=pc&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUEyQTU4SElNN0VVNVdXJmVuY3J5cHRlZElkPUEwNTA3MTMwMlZDSDVMVEQwQ0ZPTSZlbmNyeXB0ZWRBZElkPUEwMDgzMTI4MUE4UkxCWEpCTVk5ViZ3aWRnZXROYW1lPXNwX2RldGFpbF90aGVtYXRpYyZhY3Rpb249Y2xpY2tSZWRpcmVjdCZkb05vdExvZ0NsaWNrPXRydWU= +* Hardware Availability: RP2040 Pico Make example for this keyboard (after setting up your build environment): - make kepler:default + make handwired/wwa/kepler:default Flashing example for this keyboard: - make kepler:default:flash + make handwired/wwa/kepler:default:flash See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). diff --git a/keyboards/wwa/kepler/rules.mk b/keyboards/handwired/wwa/kepler/rules.mk similarity index 100% rename from keyboards/wwa/kepler/rules.mk rename to keyboards/handwired/wwa/kepler/rules.mk From db8aff6db956d8bc1b97eafee8cc2c12d7bba76c Mon Sep 17 00:00:00 2001 From: spacehangover <51838046+spacehangover@users.noreply.github.com> Date: Wed, 6 Dec 2023 02:27:44 -0300 Subject: [PATCH 5/5] Third revision changes as requested --- keyboards/handwired/wwa/kepler/readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/keyboards/handwired/wwa/kepler/readme.md b/keyboards/handwired/wwa/kepler/readme.md index 480c1342715a..38e8c4fa02ac 100644 --- a/keyboards/handwired/wwa/kepler/readme.md +++ b/keyboards/handwired/wwa/kepler/readme.md @@ -2,7 +2,6 @@ ![kepler](https://i.imgur.com/UD1J92Eh.jpeg) -*A short description of the keyboard/project* Second model of the Argentinian based keyboard manufacturer WWA * Keyboard Maintainer: [spacehangover](https://github.com/spacehangover)