summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruser <user@node5.net>2024-01-02 06:31:21 +0100
committeruser <user@node5.net>2024-01-02 06:31:21 +0100
commit9cf33debb1991743f664e02efa121b237c0a41ac (patch)
treea581e751d529c524640047259aa25508937cc9af
parent8ff70008b256a9c66cf92529b34b9ff42e3efbfe (diff)
fn: numpad, brightness, forward delete, insert, print screen
-rw-r--r--keyboards/handwired/node5_1/keymaps/default/keymap.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/keyboards/handwired/node5_1/keymaps/default/keymap.c b/keyboards/handwired/node5_1/keymaps/default/keymap.c
index 67a2860e9b..bc3036ec4d 100644
--- a/keyboards/handwired/node5_1/keymaps/default/keymap.c
+++ b/keyboards/handwired/node5_1/keymaps/default/keymap.c
@@ -23,6 +23,8 @@ enum custom_keycodes {
// Layer names don't all need to be of the same length, obviously, and you can also skip them
// entirely and just use numbers.
+// Keycodes: https://docs.qmk.fm/#/keycodes
+
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
┌───┬───┬───┬───┬───┬───┐ ┌───┬───┬───┬───┬───┬───┬───┬───┐
@@ -89,17 +91,17 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_FN] = LAYOUT(
//|--------+---------+--------+--------+--------+--------+ |--------+--------+--------+--------+--------+--------+--------+--------|
- _______, KC_MUTE, KC_VOLU, KC_VOLU, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_BRID, KC_BRIU, KC_MPLY, KC_MPLY, KC_MNXT, _______, _______, _______, _______, _______,
//|--------+---------+--------+--------+--------+--------+ |--------+--------+--------+--------+--------+--------+--------+--------|
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, KC_P7, KC_P8, KC_P9, KC_PPLS, _______, _______, KC_DEL,
//|--------+---------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------+--------|
- _______,TO(_QWERTY),KC_PWR, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______,TO(_QWERTY),KC_PWR, _______, _______, _______, _______, KC_P4, KC_P5, KC_P6, KC_PAST, _______, _______, _______,
//|--------+---------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+-----------------|
- _______, _______, KC_SLEP, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______, KC_SLEP, _______, _______, _______, _______, KC_P1, KC_P2, KC_P3, KC_PMNS, _______, _______,
//|--------+---------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+-----------------|
- _______, _______,_______,TO(_COLEMAK),_______,_______, _______, _______, _______, _______, _______, _______, _______, _______,
+ _______, _______,_______,TO(_COLEMAK),_______,_______, _______, KC_P0, KC_COMM, KC_PDOT, KC_PSLS, _______, _______, _______,
//|--------+---------+--------+--------+-----------------| |--------+--------+--------+--------+--------+--------+--------+--------+--------|
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
+ _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, KC_PSCR, _______, _______, _______, _______
//|--------+---------+--------+--------+-----------------| |--------+--------+--------+--------+--------+--------+--------+--------+--------|
)
};