forked from mirrors/qmk_firmware
7d7bb5bf82
* added ymdk ymd09 keyboard * lowercase github username * change rgb keymap to make more sense * fixed number of LEDs * remove configuration for non-existant backlight * use official template and change file permissions * disable unnecessary nkro * Apply suggestions from code review Co-Authored-By: Joel Challis <git@zvecr.com> * with easy reset via bootmagic lite, remove RESET from layout Co-authored-by: Joel Challis <git@zvecr.com>
13 lines
356 B
C
13 lines
356 B
C
#include QMK_KEYBOARD_H
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
[0] = LAYOUT(KC_KP_7, KC_KP_8, KC_KP_9,
|
|
KC_KP_4, LT(1, KC_KP_5), KC_KP_6,
|
|
KC_KP_1, KC_KP_2, KC_KP_3),
|
|
|
|
[1] = LAYOUT(RGB_RMOD, RGB_VAI, RGB_MOD,
|
|
RGB_HUI, KC_TRNS, RGB_SAI,
|
|
RGB_HUD, RGB_VAD, RGB_SAD),
|
|
|
|
};
|