~ruther/qmk_firmware

ref: 3400908b08284a8e2e17efa19053af874cd44e0c qmk_firmware/keyboards/mecxlabs/mp1/keymaps/default/keymap.c -rw-r--r-- 439 bytes
3400908b — Joel Challis Move VIA config to keymap level (#23754) 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

	[0] = LAYOUT_ortho_3x3(
        KC_1, KC_2, KC_3,
        KC_4, KC_5, KC_6,
        KC_7, KC_8, KC_9
	)

};

bool encoder_update_user(uint8_t index, bool clockwise) {
        if (clockwise) {
            tap_code(KC_VOLU);
        } else {
            tap_code(KC_VOLD);
        }
    return true;
}
Do not follow this link