Add default ortho_1x1 layout (#13118)

This commit is contained in:
Ryan
2021-06-07 20:46:22 +10:00
committed by GitHub
parent b10728edc1
commit 9dffd35762
4 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/*
* ┌───┐
* │ A 
* └───┘
*/
[0] = LAYOUT_ortho_1x1(
KC_A
)
};