diff options
author | QMK Bot <hello@qmk.fm> | 2021-09-21 22:53:09 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-09-21 22:53:09 +0000 |
commit | dd115fd50e967e2cd5a2d0657cb1359c63f1123d (patch) | |
tree | b975918318cc15e9768d587b30978e4d4c6a8321 /keyboards/smallkeyboard/smallkeyboard.h | |
parent | 8b6c16ea1f5fa982f32560eade897dcf856fbbbd (diff) | |
parent | bb754069e95237bec69cc23845e2515eea5f33e4 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/smallkeyboard/smallkeyboard.h')
-rw-r--r-- | keyboards/smallkeyboard/smallkeyboard.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/keyboards/smallkeyboard/smallkeyboard.h b/keyboards/smallkeyboard/smallkeyboard.h new file mode 100644 index 0000000000..7741772be5 --- /dev/null +++ b/keyboards/smallkeyboard/smallkeyboard.h @@ -0,0 +1,26 @@ +/* Copyright 2021 zhouqiong198401189 + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +#pragma once + +#include "quantum.h" + +#define LAYOUT_ortho_2x3( \ + K00, K01, K02,\ + K10, K11, K12 \ +) { \ + { K00, K01, K02 }, \ + { K10, K11, K12 } \ +} |