1
0
Fork 0

FX19 Support (#24220)

This commit is contained in:
Christian Greene 2024-08-03 16:11:49 -06:00 committed by GitHub
parent c7662e4f36
commit d28a50e176
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,27 @@
// Copyright 2023 QMK
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
*
* Num / * -
*
* 7 8 9 +
*
* 4 5 6
*
* 1 2 3
*Ent
*Win 0 .
*
*/
[0] = LAYOUT(
KC_LNUM, KC_PSLS, KC_PAST, KC_PMNS,
KC_P7, KC_P8, KC_P9,
KC_P4, KC_P5, KC_P6, KC_PPLS,
KC_P1, KC_P2, KC_P3,
KC_RWIN, KC_P0, KC_PDOT, KC_PENT
)
};