This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

25 lines
826 B
C
Raw Normal View History

#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*[0]
*
*N L/ * -
*
*7 8 9
*+
*4 5 6
*
*1 2 3
*Ent
*0 .
*
*/
[0] = LAYOUT_numpad_5x4(KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
KC_P7, KC_P8, KC_P9,
KC_P4, KC_P5, KC_P6, KC_PPLS,
KC_P1, KC_P2, KC_P3,
KC_P0, KC_PDOT, KC_PENT)
};