1
0
Fork 0

Add another secure string emitter to the keymap (#5057)

* Add another secure string emitter to the keymap

* Delete BACKLIGHT_ENABLE since it's default

Co-Authored-By: rys <rys@pixeltards.com>
This commit is contained in:
Rys Sommefeldt 2019-02-05 23:58:01 +00:00 committed by MechMerlin
parent 0affcc8bc3
commit 9986c3d0b7
2 changed files with 9 additions and 2 deletions

View file

@ -7,6 +7,7 @@
enum rys_keycodes {
PSTOKEN = SAFE_RANGE,
QSTOKEN
};
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
@ -16,6 +17,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
SEND_STRING(RYS_PSTOKEN);
}
break;
case QSTOKEN:
if (record->event.pressed) {
SEND_STRING(RYS_QSTOKEN);
}
break;
}
return true;
};
@ -59,7 +65,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, PSTOKEN, \
_______, KC_BTN1, KC_UP, KC_BTN2, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
_______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, \
_______, _______, _______, _______, BL_DEC, BL_TOGG, BL_INC, _______, KC_VOLU, KC_VOLD, KC_MUTE, _______, _______, KC_MS_U, KC_END, \
_______, _______, _______, _______, BL_DEC, BL_TOGG, BL_INC, QSTOKEN, KC_VOLU, KC_VOLD, KC_MUTE, _______, _______, KC_MS_U, KC_END, \
_______, _______, _______, RESET, _______, _______, _______, KC_MS_L, KC_MS_D, KC_MS_R
),
};