From b7e0d6f6b2fa86e5d60db843dd4f85c5303ee910 Mon Sep 17 00:00:00 2001 From: OTLabs Date: Sun, 17 Sep 2023 22:58:35 -0600 Subject: [PATCH 1/5] Add Vial support for idobao/montex/v2 --- .../idobao/montex/v2/keymaps/vial/config.h | 9 +++ .../idobao/montex/v2/keymaps/vial/keymap.c | 54 ++++++++++++++++ .../idobao/montex/v2/keymaps/vial/rules.mk | 8 +++ .../idobao/montex/v2/keymaps/vial/vial.json | 64 +++++++++++++++++++ 4 files changed, 135 insertions(+) create mode 100644 keyboards/idobao/montex/v2/keymaps/vial/config.h create mode 100644 keyboards/idobao/montex/v2/keymaps/vial/keymap.c create mode 100644 keyboards/idobao/montex/v2/keymaps/vial/rules.mk create mode 100644 keyboards/idobao/montex/v2/keymaps/vial/vial.json diff --git a/keyboards/idobao/montex/v2/keymaps/vial/config.h b/keyboards/idobao/montex/v2/keymaps/vial/config.h new file mode 100644 index 0000000000..18dad895a3 --- /dev/null +++ b/keyboards/idobao/montex/v2/keymaps/vial/config.h @@ -0,0 +1,9 @@ +// Copyright 2023 Oleg Titov +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#define VIAL_KEYBOARD_UID {0x1A, 0xC2, 0xE7, 0x4C, 0xE4, 0x37, 0xF3, 0x6A} + +#define VIAL_UNLOCK_COMBO_ROWS { 0, 0 } +#define VIAL_UNLOCK_COMBO_COLS { 0, 4 } diff --git a/keyboards/idobao/montex/v2/keymaps/vial/keymap.c b/keyboards/idobao/montex/v2/keymaps/vial/keymap.c new file mode 100644 index 0000000000..db37bc72c7 --- /dev/null +++ b/keyboards/idobao/montex/v2/keymaps/vial/keymap.c @@ -0,0 +1,54 @@ +// Copyright 2022 IBNobody (@IBNobody) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + /* + * ┌───┌───┬───┬───┬───┐ + * │Esc│Tab│ F1│Cal│Bsp│ + * ├───┼───┼───┼───┼───┤ + * │Ctr│Num│ / │ * │ - │ + * ├───┼───┼───┼───┼───┤ + * │Gui│ 7 │ 8 │ 9 │ │ + * ├───┼───┼───┼───┤ + │ + * │Alt│ 4 │ 5 │ 6 │ │ + * ├───┼───┼───┼───┼───┤ + * │Shi│ 1 │ 2 │ 3 │ │ + * ├───┼───┴───┼───┤Ent│ + * │MO1│ 0 │ . │ │ + * └───┴───────┴───┴───┘ + */ + [0] = LAYOUT_numpad_6x5( + QK_GESC, KC_TAB, KC_F1, KC_CALC, KC_BSPC, + KC_LCTL, KC_NUM, KC_PSLS, KC_PAST, KC_PMNS, + KC_LGUI, KC_P7, KC_P8, KC_P9, KC_PPLS, + KC_LALT, KC_P4, KC_P5, KC_P6, + KC_LSFT, KC_P1, KC_P2, KC_P3, KC_PENT, + MO(1), KC_P0, KC_PDOT + ), + + /* + * ┌───┌───┐───┬───┬───┐ + * │Rst│TOG│MOD│PSc│SLk│ + * ├───┼───┼───┼───┼───┤ + * │Hu+│ │Sp-│Sp+│Br-│ + * ├───┼───┼───┼───┼───┤ + * │Hu-│Hom│ ↑ │PgU│ │ + * ├───┼───┼───┼───┤Br+│ + * │St+│ ← │ │ → │ │ + * ├───┼───┼───┼───┤───┤ + * │St-│End│ ↓ │PgD│ │ + * ├───┼───┴───┼───┤Ent│ + * │mo1│Insert │Del│ │ + * └───┴───────┴───┘───┘ + */ + [1] = LAYOUT_numpad_6x5( + QK_BOOT, RGB_TOG, RGB_MOD, KC_PSCR, KC_SCRL, + RGB_HUI, XXXXXXX, RGB_SPD, RGB_SPI, RGB_VAD, + RGB_HUD, KC_HOME, KC_UP, KC_PGUP, RGB_VAI, + RGB_SAI, KC_LEFT, XXXXXXX, KC_RGHT, + RGB_SAD, KC_END, KC_DOWN, KC_PGDN, KC_ENT, + _______, KC_INS, KC_DEL + ) +}; diff --git a/keyboards/idobao/montex/v2/keymaps/vial/rules.mk b/keyboards/idobao/montex/v2/keymaps/vial/rules.mk new file mode 100644 index 0000000000..e976c25b67 --- /dev/null +++ b/keyboards/idobao/montex/v2/keymaps/vial/rules.mk @@ -0,0 +1,8 @@ +VIA_ENABLE = yes # Enable VIA +VIAL_ENABLE = yes # Enable VIAL + +# Options to reduce firmware size: +LTO_ENABLE = yes # make the compiler work harder +QMK_SETTINGS = no # enables the tab to change QMK settings from the GUI1~# enables the tab to change QMK settings from the GUI1~ # enables the tab to change QMK settings from the GUI +TAP_DANCE_ENABLE = yes +COMBO_ENABLE = no diff --git a/keyboards/idobao/montex/v2/keymaps/vial/vial.json b/keyboards/idobao/montex/v2/keymaps/vial/vial.json new file mode 100644 index 0000000000..eb0aed190e --- /dev/null +++ b/keyboards/idobao/montex/v2/keymaps/vial/vial.json @@ -0,0 +1,64 @@ +{ + "name": "IDOBAO Montex V2", + "vendorId": "0x6964", + "productId": "0x0227", + "lighting": { + "extends": "qmk_rgblight", + "supportedLightingValues": [128, 129, 131], + "underglowEffects": [ + ["00. None", 0], + ["01. Solid Color", 1], + ["02. Alphas Mods", 1], + ["03. Gradient U&D", 1], + ["04. Gradient L&R", 1], + ["05. Breathing", 1], + ["06. Cycle Solid Color", 1], + ["07. Cycle LR", 1], + ["08. Cycle TB", 1], + ["09. Rainbow Beacon", 1], + ["10. Spinning Pinwheel", 1], + ["11. Spinning Spiral", 1], + ["12. Cycle Pinwheel", 1], + ["13. Raindrops", 1], + ["14. Jellybean Raindrops", 1], + ["15. Hue Breathing", 1], + ["16. Hue Pendulum", 1], + ["17. Hue Wave", 1], + ["18. Pixel Rain", 1], + ["19. Pixel Flow", 1], + ["20. Reactive Simple", 1], + ["21. Reactive Solid", 1], + ["22. Reactive Wide", 1], + ["23. Reactive Multi-wide", 1], + ["24. Splash", 1], + ["25. Solid Splash", 1] + ] + }, + "customKeycodes": [ + {"name": "", "title": "{undefined}", "shortName": ""}, + {"name": "", "title": "{undefined}", "shortName": ""}, + {"name": "Toggle Per-key", "title": "RGB_TPK", "shortName": "RGB T/PK"}, + {"name": "Toggle Under Glow", "title": "RGB_TUG", "shortName": "RGB T/UG"}, + {"name": "", "title": "{undefined}", "shortName": ""}, + {"name": "", "title": "{undefined}", "shortName": ""}, + {"name": "", "title": "{undefined}", "shortName": ""}, + {"name": "", "title": "{undefined}", "shortName": ""}, + { + "name": "Toggle NumLk LED", + "title": "Toggle NumLock LED Feature", + "shortName": "NumLk LED" + }, + {"name": "Version", "title": "Type Firmware Version", "shortName": "Ver?"} + ], + "matrix": {"rows": 6, "cols": 5}, + "layouts": { + "keymap": [ + [{"c": "#777777"}, "0,0", {"c": "#aaaaaa"}, "0,1", "0,2", "0,3", "0,4"], + [{"y": 0.5, "c": "#cccccc"}, "1,0", "1,1", "1,2", "1,3", "1,4"], + ["2,0", "2,1", "2,2", "2,3", {"h": 2}, "2,4"], + ["3,0", "3,1", "3,2", "3,3"], + ["4,0", "4,1", "4,2", "4,3", {"c": "#777777", "h": 2}, "5,3"], + [{"c": "#cccccc"}, "5,0", {"w": 2}, "5,1", "5,2"] + ] + } +} From 39000a5e63ff9fbc7458c27b65889bdaf515a940 Mon Sep 17 00:00:00 2001 From: OTLabs Date: Mon, 18 Sep 2023 21:55:54 -0600 Subject: [PATCH 2/5] Update config.h --- keyboards/idobao/montex/v2/keymaps/vial/config.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/keyboards/idobao/montex/v2/keymaps/vial/config.h b/keyboards/idobao/montex/v2/keymaps/vial/config.h index 18dad895a3..1c065166e0 100644 --- a/keyboards/idobao/montex/v2/keymaps/vial/config.h +++ b/keyboards/idobao/montex/v2/keymaps/vial/config.h @@ -7,3 +7,12 @@ #define VIAL_UNLOCK_COMBO_ROWS { 0, 0 } #define VIAL_UNLOCK_COMBO_COLS { 0, 4 } + +// Enable all available RGB Matrix effects +#define RGB_MATRIX_FRAMEBUFFER_EFFECTS +#define RGB_MATRIX_KEYPRESSES + +// Firmware size optimization +// disable Lock Key support +#undef LOCKING_SUPPORT_ENABLE +#undef LOCKING_RESYNC_ENABLE From db54521a1633760d56b959c4e9656ee10df314f1 Mon Sep 17 00:00:00 2001 From: OTLabs Date: Mon, 18 Sep 2023 21:57:08 -0600 Subject: [PATCH 3/5] Update vial.json --- .../idobao/montex/v2/keymaps/vial/vial.json | 49 +------------------ 1 file changed, 1 insertion(+), 48 deletions(-) diff --git a/keyboards/idobao/montex/v2/keymaps/vial/vial.json b/keyboards/idobao/montex/v2/keymaps/vial/vial.json index eb0aed190e..2948aa0c50 100644 --- a/keyboards/idobao/montex/v2/keymaps/vial/vial.json +++ b/keyboards/idobao/montex/v2/keymaps/vial/vial.json @@ -2,54 +2,7 @@ "name": "IDOBAO Montex V2", "vendorId": "0x6964", "productId": "0x0227", - "lighting": { - "extends": "qmk_rgblight", - "supportedLightingValues": [128, 129, 131], - "underglowEffects": [ - ["00. None", 0], - ["01. Solid Color", 1], - ["02. Alphas Mods", 1], - ["03. Gradient U&D", 1], - ["04. Gradient L&R", 1], - ["05. Breathing", 1], - ["06. Cycle Solid Color", 1], - ["07. Cycle LR", 1], - ["08. Cycle TB", 1], - ["09. Rainbow Beacon", 1], - ["10. Spinning Pinwheel", 1], - ["11. Spinning Spiral", 1], - ["12. Cycle Pinwheel", 1], - ["13. Raindrops", 1], - ["14. Jellybean Raindrops", 1], - ["15. Hue Breathing", 1], - ["16. Hue Pendulum", 1], - ["17. Hue Wave", 1], - ["18. Pixel Rain", 1], - ["19. Pixel Flow", 1], - ["20. Reactive Simple", 1], - ["21. Reactive Solid", 1], - ["22. Reactive Wide", 1], - ["23. Reactive Multi-wide", 1], - ["24. Splash", 1], - ["25. Solid Splash", 1] - ] - }, - "customKeycodes": [ - {"name": "", "title": "{undefined}", "shortName": ""}, - {"name": "", "title": "{undefined}", "shortName": ""}, - {"name": "Toggle Per-key", "title": "RGB_TPK", "shortName": "RGB T/PK"}, - {"name": "Toggle Under Glow", "title": "RGB_TUG", "shortName": "RGB T/UG"}, - {"name": "", "title": "{undefined}", "shortName": ""}, - {"name": "", "title": "{undefined}", "shortName": ""}, - {"name": "", "title": "{undefined}", "shortName": ""}, - {"name": "", "title": "{undefined}", "shortName": ""}, - { - "name": "Toggle NumLk LED", - "title": "Toggle NumLock LED Feature", - "shortName": "NumLk LED" - }, - {"name": "Version", "title": "Type Firmware Version", "shortName": "Ver?"} - ], + "lighting": "vialrgb", "matrix": {"rows": 6, "cols": 5}, "layouts": { "keymap": [ From a519c00326b6160707c54f64df02b761640325db Mon Sep 17 00:00:00 2001 From: OTLabs Date: Mon, 18 Sep 2023 21:59:23 -0600 Subject: [PATCH 4/5] Update rules.mk --- keyboards/idobao/montex/v2/keymaps/vial/rules.mk | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/keyboards/idobao/montex/v2/keymaps/vial/rules.mk b/keyboards/idobao/montex/v2/keymaps/vial/rules.mk index e976c25b67..40d10f6abd 100644 --- a/keyboards/idobao/montex/v2/keymaps/vial/rules.mk +++ b/keyboards/idobao/montex/v2/keymaps/vial/rules.mk @@ -1,8 +1,21 @@ VIA_ENABLE = yes # Enable VIA VIAL_ENABLE = yes # Enable VIAL +VIALRGB_ENABLE = yes # Options to reduce firmware size: LTO_ENABLE = yes # make the compiler work harder + +# Vial optimization QMK_SETTINGS = no # enables the tab to change QMK settings from the GUI1~# enables the tab to change QMK settings from the GUI1~ # enables the tab to change QMK settings from the GUI TAP_DANCE_ENABLE = yes COMBO_ENABLE = no + +# QMK optimization +CONSOLE_ENABLE = no +COMMAND_ENABLE = no +MOUSEKEY_ENABLE = no +#EXTRAKEY_ENABLE = no + +SPACE_CADET_ENABLE = no +GRAVE_ESC_ENABLE = no +MAGIC_ENABLE = no From 46a0c19ec5b71320383e4ec437151851f8d21b8b Mon Sep 17 00:00:00 2001 From: OTLabs Date: Tue, 19 Sep 2023 16:30:25 -0600 Subject: [PATCH 5/5] Update rules.mk remove repeating line --- keyboards/idobao/montex/v2/keymaps/vial/rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/idobao/montex/v2/keymaps/vial/rules.mk b/keyboards/idobao/montex/v2/keymaps/vial/rules.mk index 40d10f6abd..9bf0db06bb 100644 --- a/keyboards/idobao/montex/v2/keymaps/vial/rules.mk +++ b/keyboards/idobao/montex/v2/keymaps/vial/rules.mk @@ -6,7 +6,7 @@ VIALRGB_ENABLE = yes LTO_ENABLE = yes # make the compiler work harder # Vial optimization -QMK_SETTINGS = no # enables the tab to change QMK settings from the GUI1~# enables the tab to change QMK settings from the GUI1~ # enables the tab to change QMK settings from the GUI +QMK_SETTINGS = no # enables the tab to change QMK settings from the GUI1 TAP_DANCE_ENABLE = yes COMBO_ENABLE = no