2015-10-27 19:33:18 +01:00
|
|
|
#ifndef %KEYBOARD_UPPERCASE%_H
|
|
|
|
#define %KEYBOARD_UPPERCASE%_H
|
|
|
|
|
2016-06-24 04:18:20 +02:00
|
|
|
#include "quantum.h"
|
2015-10-27 19:33:18 +01:00
|
|
|
|
|
|
|
// This a shortcut to help you visually see your layout.
|
|
|
|
// The following is an example using the Planck MIT layout
|
|
|
|
// The first section contains all of the arguements
|
|
|
|
// The second converts the arguments into a two-dimensional array
|
|
|
|
#define KEYMAP( \
|
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
|
|
|
}
|
2015-10-27 19:33:18 +01:00
|
|
|
|
2016-03-28 16:13:37 +02:00
|
|
|
#endif
|