You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
363 B
19 lines
363 B
6 years ago
|
#include QMK_KEYBOARD_H
|
||
7 years ago
|
|
||
|
#define _MAIN 0
|
||
|
#define _FN 1
|
||
|
|
||
|
#define KC_X0 LT(_FN, KC_ESC)
|
||
|
|
||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||
7 years ago
|
[_MAIN] = LAYOUT(
|
||
6 years ago
|
KC_VOLU, KC_MPLY, KC_MPRV, KC_PGUP,
|
||
|
KC_VOLD, KC_MUTE, KC_MNXT, KC_PGDN
|
||
7 years ago
|
),
|
||
|
|
||
7 years ago
|
[_FN] = LAYOUT(
|
||
6 years ago
|
KC_F, _______, RGB_HUI, _______,
|
||
|
RGB_TOG, RGB_MOD, RGB_HUD, _______
|
||
7 years ago
|
)
|
||
|
};
|