]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/peiorisboards/ixora/keymaps/wntrmln/keymap.c
Add missing links to features page and sidebar section (#5949)
[qmk_firmware.git] / keyboards / peiorisboards / ixora / keymaps / wntrmln / keymap.c
1 #include QMK_KEYBOARD_H
2
3 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4   /* Keymap _BL: (Base Layer) Default Layer
5    * ,-----------------.
6    * |RESET|  2  |  3  |
7    * |-----------------|
8    * |Caps |NmLk |ScLk |
9    * `-----------------'
10    */
11 [0] = LAYOUT_full(
12   KC_PSCR, KC_MUTE, LGUI(KC_1),
13   KC_MPRV, KC_MPLY, KC_MNXT)
14 };
15
16 void matrix_init_user(void) {
17   //user initialization
18 }
19
20 void matrix_scan_user(void) {
21   //user matrix
22 }
23
24 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
25   return true;
26 }