mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-05 15:14:17 -04:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
2612b7cd69
2 changed files with 23 additions and 0 deletions
22
keyboards/riot_pad/keymaps/via/keymap.c
Normal file
22
keyboards/riot_pad/keymaps/via/keymap.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2023 ShandonCodes (@ShandonCodes)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
/*
|
||||
* ┌───┬───┬────┐
|
||||
* │ A │ B │ C │
|
||||
* ├───┼───┼────┤
|
||||
* │ D │ E │ Fn │
|
||||
* └───┴───┴────┘
|
||||
*/
|
||||
[0] = LAYOUT_ortho_2x3(
|
||||
KC_A, KC_B, KC_C,
|
||||
KC_D, KC_E, MO(1)
|
||||
),
|
||||
[1] = LAYOUT_ortho_2x3(
|
||||
RGB_MOD, RGB_RMOD, RGB_TOG,
|
||||
RGB_VAI, RGB_VAD, KC_TRNS
|
||||
)
|
||||
};
|
1
keyboards/riot_pad/keymaps/via/rules.mk
Normal file
1
keyboards/riot_pad/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
Loading…
Add table
Add a link
Reference in a new issue