[Keyboard] add itstleo9 (#21460)

Co-authored-by: jack <0x6a73@protonmail.com>
This commit is contained in:
Its TLeo
2023-07-11 11:16:19 +07:00
committed by GitHub
parent 4d92aff2ae
commit fbe44c0621
9 changed files with 134 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Copyright 2023 QMK
// 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 │ F │
* ├───┼───┼───┤
* │ G │ H │ I │
* └───┴───┴───┘
*/
[0] = LAYOUT_ortho_3x3(
KC_A, KC_B, KC_C,
KC_D, KC_E, KC_F,
KC_G, KC_H, KC_I
)
};