2019-07-08 23:07:36 +02:00
|
|
|
/* Copyright %YEAR% %YOUR_NAME%
|
2017-03-29 00:20:36 +02: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 03:06:03 +01:00
|
|
|
|
2019-01-24 06:04:04 +01:00
|
|
|
#pragma once
|
2015-10-27 19:33:18 +01:00
|
|
|
|
2016-06-24 04:18:20 +02:00
|
|
|
#include "quantum.h"
|
2015-10-27 19:33:18 +01:00
|
|
|
|
2019-11-02 03:06:03 +01:00
|
|
|
/* This is a shortcut to help you visually see your layout.
|
2018-08-29 19:57:30 +02: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 12:48:37 +02:00
|
|
|
#define LAYOUT( \
|
|
|
|
k00, k01, k02, \
|
2019-11-02 03:06:03 +01:00
|
|
|
k10, k12 \
|
2020-07-15 10:52:02 +02:00
|
|
|
) { \
|
2019-10-10 12:48:37 +02:00
|
|
|
{ k00, k01, k02 }, \
|
2019-11-02 03:06:03 +01:00
|
|
|
{ k10, KC_NO, k12 } \
|
2019-10-10 12:48:37 +02:00
|
|
|
}
|