1
0
Fork 0

[Keyboard] Add ai macropad (#17722)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Louis Dalibard <ontake@ontake.dev>
This commit is contained in:
Louis Dalibard 2022-08-21 02:17:02 +02:00 committed by GitHub
parent e2fbcc8099
commit 7ea54a7837
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 130 additions and 0 deletions

View file

@ -0,0 +1,24 @@
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
*
* Tab Q W E
*
* Bsp R T A
*
* Sft S D F
*
* Ctl Z X C
*
* NaNAppGUIAlt
*
*/
[0] = LAYOUT_ai_5x4_1(
KC_TAB, KC_Q, KC_W, KC_E,
KC_BSPC, KC_R, KC_T, KC_A,
KC_LSFT, KC_S, KC_D, KC_F,
KC_LCTL, KC_Z, KC_X, KC_C,
KC_MENU, KC_LGUI, KC_LALT
)
};