Browse Source

added some keys for writing pipe and backslash

master
Roxie Gibson 3 years ago
parent
commit
b357a40838
No known key found for this signature in database
2 changed files with 59 additions and 20 deletions
  1. +57
    -19
      keyboards/dz60/keymaps/roxxers/keymap.c
  2. +2
    -1
      keyboards/dz60/rules.mk

+ 57
- 19
keyboards/dz60/keymaps/roxxers/keymap.c View File

@@ -1,42 +1,80 @@
#include QMK_KEYBOARD_H
#include "keymap_uk.h"
#include "sendstring_uk.h"

// Define layer consts
#define RALT_UP 1
#define FN_UP 2
#define SETTING 3

/* THIS FILE WAS GENERATED!
*
* This file was generated by qmk json2c. You may or may not want to
* edit it directly.
*/

enum my_keycodes {
PIPE = SAFE_RANGE,
BKSLSH
};

bool process_record_user(uint16_t kc, keyrecord_t *rec) {
// Detect altgr keypress and dont process as normal if PIPE or BKSLSH are pressed
// uint8_t layer;
// layer = biton32(layer_state); // get the current layer
// if (layer == RALT_UP) { // if it is your shift layer, then...
// if (kc >= KC_A && kc <= KC_EXSEL && !(
// // if your keycode is in this range, shift will be enabled, unless you exclude it below
// // in my example, you don't want shift if 1 or 2 is pressed while on this layer
// // just add whichever keycodes you want to exclude
// kc == PIPE ||
// kc == BKSLSH
// )) {
// if (rec->event.pressed) {
// register_mods(MOD_RALT);
// } else {
// unregister_mods(MOD_RALT);
// }
// }
// }
switch (kc) {
case PIPE:
if (rec->event.pressed) {
SEND_STRING("|");
}
return false; // Skip all further processing of this key
case BKSLSH:
if (rec->event.pressed) {
SEND_STRING("\\");
}
return false; // Skip all further processing of this key
default:
return true;
};
}

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_60_iso_4th_row_all_1u(
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC,
LT(1, KC_CAPS), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT,
KC_LSFT, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(kf2), KC_DEL,
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, LM(3, MOD_RALT), KC_RGUI, _______, MO(1), KC_RCTL
LT(FN_UP, KC_CAPS), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT,
KC_LSFT, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(SETTING), KC_DEL,
KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(RALT_UP), _______, MO(FN_UP), KC_RCTL
),
[RALT_UP] = LAYOUT_60_iso_4th_row_all_1u(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_NO,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, PIPE, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, BKSLSH, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______
),
[1] = LAYOUT_60_iso_4th_row_all_1u(
[FN_UP] = LAYOUT_60_iso_4th_row_all_1u(
_______, 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_SLCK, KC_PSCR, _______, _______,
_______, _______, _______, _______, _______, _______, KC_MSTP, KC_MPLY, KC_MPRV, KC_MNXT, _______, _______, KC_UP, _______,
_______, _______, _______, _______, _______, _______, _______, KC_MSEL, KC_MUTE, KC_VOLD, KC_VOLU, _______, KC_LEFT, KC_DOWN, KC_RGHT,
_______, _______, _______, _______, _______, _______, _______, KC_TRNS, _______
),
[2] = LAYOUT_60_iso_4th_row_all_1u(
[SETTING] = LAYOUT_60_iso_4th_row_all_1u(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_SAI, RGB_VAI, RGB_SPI, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______
),
[3] = LAYOUT_60_iso_4th_row_all_1u(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______
)
};


+ 2
- 1
keyboards/dz60/rules.mk View File

@@ -15,7 +15,7 @@ BOOTLOADER = atmel-dfu
# change yes to no to disable
#
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
MOUSEKEY_ENABLE = yes # Mouse keys
MOUSEKEY_ENABLE = no # Mouse keys
EXTRAKEY_ENABLE = yes # Audio control and System control
CONSOLE_ENABLE = no # Console for debug
COMMAND_ENABLE = no # Commands for debug and configuration
@@ -29,5 +29,6 @@ MIDI_ENABLE = no # MIDI support
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
UNICODE_ENABLE = yes

LAYOUTS = 60_ansi 60_ansi_split_bs_rshift 60_hhkb 60_iso 60_abnt2 60_tsangan_hhkb

Loading…
Cancel
Save