2018-05-14 04:01:13 +00:00
|
|
|
/* Copyright 2018 REPLACE_WITH_YOUR_NAME
|
2017-03-28 22:20:36 +00: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/>.
|
|
|
|
*/
|
2015-10-27 18:33:18 +00:00
|
|
|
#ifndef %KEYBOARD_UPPERCASE%_H
|
|
|
|
#define %KEYBOARD_UPPERCASE%_H
|
|
|
|
|
2016-06-24 02:18:20 +00:00
|
|
|
#include "quantum.h"
|
2015-10-27 18:33:18 +00:00
|
|
|
|
|
|
|
// This a shortcut to help you visually see your layout.
|
|
|
|
// The following is an example using the Planck MIT layout
|
2017-03-13 17:11:05 +00:00
|
|
|
// The first section contains all of the arguments
|
2015-10-27 18:33:18 +00:00
|
|
|
// The second converts the arguments into a two-dimensional array
|
2018-04-05 22:35:38 +00:00
|
|
|
#define LAYOUT( \
|
2016-01-24 01:45:52 +00:00
|
|
|
k00, k01, k02, \
|
2016-03-04 15:53:58 +00:00
|
|
|
k10, k11 \
|
2015-10-27 18:33:18 +00:00
|
|
|
) \
|
|
|
|
{ \
|
2016-01-24 01:45:52 +00:00
|
|
|
{ k00, k01, k02 }, \
|
|
|
|
{ k10, KC_NO, k11 }, \
|
2016-03-28 14:13:37 +00:00
|
|
|
}
|
2015-10-27 18:33:18 +00:00
|
|
|
|
2016-03-28 14:13:37 +00:00
|
|
|
#endif
|