2019-07-09 07:07:36 +10:00
|
|
|
/* Copyright %YEAR% %YOUR_NAME%
|
2017-03-28 15:20:36 -07:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2019-11-02 13:06:03 +11:00
|
|
|
|
2019-01-23 21:04:04 -08:00
|
|
|
#pragma once
|
2015-10-27 14:33:18 -04:00
|
|
|
|
2016-06-23 22:18:20 -04:00
|
|
|
#include "quantum.h"
|
2015-10-27 14:33:18 -04:00
|
|
|
|
2019-11-02 13:06:03 +11:00
|
|
|
/* This is a shortcut to help you visually see your layout.
|
2018-08-29 10:57:30 -07:00
|
|
|
*
|
|
|
|
* The first section contains all of the arguments representing the physical
|
|
|
|
* layout of the board and position of the keys.
|
|
|
|
*
|
|
|
|
* The second converts the arguments into a two-dimensional array which
|
|
|
|
* represents the switch matrix.
|
|
|
|
*/
|
2019-10-10 21:48:37 +11:00
|
|
|
#define LAYOUT( \
|
|
|
|
k00, k01, k02, \
|
2019-11-02 13:06:03 +11:00
|
|
|
k10, k12 \
|
2020-07-15 18:52:02 +10:00
|
|
|
) { \
|
2019-10-10 21:48:37 +11:00
|
|
|
{ k00, k01, k02 }, \
|
2019-11-02 13:06:03 +11:00
|
|
|
{ k10, KC_NO, k12 } \
|
2019-10-10 21:48:37 +11:00
|
|
|
}
|