mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2024-11-22 16:37:58 +06:00
50 lines
1.4 KiB
C
50 lines
1.4 KiB
C
|
// Copyright 2023 QMK
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#include QMK_KEYBOARD_H
|
||
|
|
||
|
enum custom_keycodes {
|
||
|
KC_P00 = SAFE_RANGE
|
||
|
};
|
||
|
|
||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||
|
/*
|
||
|
* ┌───┐
|
||
|
* │ - │
|
||
|
* ┌───┬───┬───┼───┤
|
||
|
* │ 7 │ 8 │ 9 │ + │
|
||
|
* ├───┼───┼───┼───┤
|
||
|
* │ 4 │ 5 │ 6 │ % │
|
||
|
* ├───┼───┼───┼───┤
|
||
|
* │ 1 │ 2 │ 3 │ = │
|
||
|
* ├───┼───┼───┼───┤
|
||
|
* │ 0 │00 │ . │Ent│
|
||
|
* └───┴───┴───┴───┘
|
||
|
*/
|
||
|
[0] = LAYOUT(
|
||
|
KC_PMNS,
|
||
|
KC_P7, KC_P8, KC_P9, KC_PPLS,
|
||
|
KC_P4, KC_P5, KC_P6, KC_PERC,
|
||
|
KC_P1, KC_P2, KC_P3, KC_EQL,
|
||
|
KC_P0, KC_P00, KC_PDOT, KC_PENT
|
||
|
)
|
||
|
};
|
||
|
|
||
|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||
|
if (record->event.pressed) {
|
||
|
switch(keycode) {
|
||
|
case KC_P00:
|
||
|
tap_code(KC_P0);
|
||
|
tap_code(KC_P0);
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
#if defined(ENCODER_MAP_ENABLE)
|
||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
||
|
[0] = { ENCODER_CCW_CW(KC_PGUP, KC_PGDN) }
|
||
|
};
|
||
|
#endif
|