Updated to conform with most recent PR checklist

- Removed VIA keymap
- Formatted keyboard.json with qmk format-json
- Updated custom keycodes in nifty_numpad.h to start at QK_USER
This commit is contained in:
Isaac Rex 2025-03-16 13:40:25 -05:00
parent 7c2c6971b7
commit 556775dc4e
4 changed files with 8 additions and 90 deletions

View File

@ -19,12 +19,6 @@
},
"processor": "RP2040",
"rgb_matrix": {
"driver": "ws2812",
"default": {
"animation": "solid_color",
"hue": 127,
"speed": 100
},
"animations": {
"band_pinwheel_sat": true,
"band_pinwheel_val": true,
@ -62,6 +56,12 @@
"splash": true,
"typing_heatmap": false
},
"default": {
"animation": "solid_color",
"hue": 127,
"speed": 100
},
"driver": "ws2812",
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0, "flags": 4},
{"matrix": [0, 1], "x": 43, "y": 0, "flags": 4},
@ -147,4 +147,4 @@
]
}
}
}
}

View File

@ -1,81 +0,0 @@
// Copyright 2023 Isaac Rex (@Acliad)
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
// NOTE: LAYER_RGB is defined in nifty_numpad.h
enum LAYERS {
LAYER_BL = 0,
};
// Setup keymap
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* BCK -> Backspace
* WIN -> Task View
* EXP -> Open Explorer
* SCN -> Screenshot
*
* F13F19 BCKWINEXPSCN
*
*
* F14F20 Num / * -
*
* F15F21 7 8 9
* +
* F16F22 4 5 6
*
* F17F23 1 2 3
* Ent
* F18F24 0 .
*
*/
[LAYER_BL] = LAYOUT_numpad_6x6(
KC_F13, KC_F19, LT(LAYER_RGB, KC_BSPC), RGUI(KC_TAB), RGUI(KC_E), RGUI(RSFT(KC_S)),
KC_F14, KC_F20, MT(MOD_RCTL, KC_NUM), KC_PSLS, KC_PAST, KC_PMNS,
KC_F15, KC_F21, KC_P7, KC_P8, KC_P9, KC_PPLS,
KC_F16, KC_F22, KC_P4, KC_P5, KC_P6,
KC_F17, KC_F23, KC_P1, KC_P2, KC_P3, KC_PENT,
KC_F18, KC_F24, KC_P0, KC_PDOT
),
/*
* HUI -> Hue Increase
* HUD -> Hue Decrease
*
* SAI -> Saturation Increase
* SAD -> Saturation Decrease
*
* VAI -> Value Increase
* VAD -> Value Decrease
*
* SPI -> Speed Increase
* SPD -> Speed Decrease
*
* MOD -> RGB Mode (effect cycle)
*
* ___ -> Base Layer Function
*
* ______ ___HUISAIVAI
*
*
* ______ NumHUDSADVAD
*
* ______ ___MOD___
* SPI
* ______ _________
*
* ______ _________
* SPD
* ______ ___ ___
*
*/
[LAYER_RGB] = LAYOUT_numpad_6x6(
_______, _______, _______, RGB_HUI, RGB_SAI, RGB_VAI,
_______, _______, _______, RGB_HUD, RGB_SAD, RGB_VAD,
_______, _______, _______, RGB_MOD, _______, RGB_SPI,
_______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, RGB_SPD,
_______, _______, _______, _______
)
};

View File

@ -1 +0,0 @@
VIA_ENABLE = yes

View File

@ -36,7 +36,7 @@
*/
enum custom_keycodes {
RGB_DEF = QK_KB,
RGB_DEF = QK_USER,
RGB_IEF
};
#define LAYER_RGB (MAX_LAYER - 1)