qmk_firmware/keyboards/snes_macropad/keymaps/test/keymap.c
John Barbero c2326c05c0
[Keyboard] Fixes to make snes_macropad play nicer with qmk configurator (#22432)
* [Keyboard] Change default implementation for get_layer_name_user

Will now show the layer number instead of "Unknown", since this is
what will be shown if QMK Configurator is used to compile the
firmware.

* [Keyboard] Update the layout info

This makes it look sort of like a macropad + gamepad rather than an 4x6
ortholinear keyboard.

* [Keyboard] Fix default implementation of get_layer_name_user

Based on feedback from code review the implementation was swapped in
favor of using get_u8_str. This implied a change to the argument type
from int to uint8_t, which cascaded into the existing keymaps. (This
made sense in general, since the return type of get_highest_layer is
also a uint8_t.)
2023-11-11 22:30:31 -07:00

75 lines
2.3 KiB
C

// Copyright 2023 John Barbero Unenge (@jbarberu)
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
enum Layer {
L_Numpad = 0,
L_Symbols,
L_RGB
};
// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* Macropad Button Order
* ┌───┬───┬───┬───┐
* │ 7 │ 8 │ 9 │ - │
* ├───┼───┼───┼───┤
* │ 4 │ 5 │ 6 │ + │
* ├───┼───┼───┼───┤
* │ 1 │ 2 │ 3 │ 0 │
* └───┴───┴───┴───┘
*
* SNES Button Order
* ┌────────┬────────┬────────┬────────┐
* │ LT │ RT │ START │ SELECT │
* ├────────┼────────┼────────┼────────┤
* │ UP │ DOWN │ LEFT │ RIGHT │
* ├────────┼────────┼────────┼────────┤
* │ A │ B │ X │ Y │
* └────────┴────────┴────────┴────────┘
*
*/
[L_Numpad] = LAYOUT(
KC_1, KC_2, KC_3, KC_4
, KC_5, KC_6, KC_7, KC_8
, KC_9, KC_0, KC_A, KC_S
, KC_A, KC_S, KC_ENT, KC_BSPC
, KC_UP, KC_DOWN, KC_LEFT, KC_RIGHT
, KC_X, KC_Z, LSFT(KC_F1),KC_TAB
),
[L_RGB] = LAYOUT(
RGB_M_P, RGB_M_B, RGB_TOG, KC_NO
, RGB_MOD, RGB_HUI, RGB_VAI, TO(L_Numpad)
, RGB_RMOD, RGB_HUD, RGB_VAD, KC_NO
, KC_A, KC_B, KC_C, KC_D
, KC_E, KC_F, KC_G, KC_H
, KC_I, KC_J, KC_K, KC_L
),
[L_Symbols] = LAYOUT(
KC_PPLS, KC_PMNS, KC_PEQL, KC_NO
, KC_PAST, KC_PSLS, KC_ENT, KC_TRNS
, KC_NUM, KC_NO, KC_NO, QK_BOOT
, KC_A, KC_B, KC_C, KC_D
, KC_E, KC_F, KC_G, KC_H
, KC_I, KC_J, KC_K, KC_L
)
};
// clang-format on
const char * get_layer_name_user(uint8_t layer) {
switch (layer) {
case L_Numpad:
return "Numpad";
case L_RGB:
return "RGB Controls";
case L_Symbols:
return "Symbols";
default:
return "Undef";
}
}