2019-02-26 16:59:34 +01:00
|
|
|
/* Copyright 2019 %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-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
|
|
|
|
2018-08-29 19:57:30 +02:00
|
|
|
/* This a shortcut to help you visually see your layout.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-04-06 00:35:38 +02:00
|
|
|
#define LAYOUT( \
|
2016-01-24 02:45:52 +01:00
|
|
|
k00, k01, k02, \
|
2016-03-04 16:53:58 +01:00
|
|
|
k10, k11 \
|
2015-10-27 19:33:18 +01:00
|
|
|
) \
|
|
|
|
{ \
|
2016-01-24 02:45:52 +01:00
|
|
|
{ k00, k01, k02 }, \
|
|
|
|
{ k10, KC_NO, k11 }, \
|
2016-03-28 16:13:37 +02:00
|
|
|
}
|