summaryrefslogtreecommitdiffstats
path: root/keyboards/pearl/pearl.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-04-27 02:19:42 +0200
committerDrashna Jaelre <drashna@live.com>2018-04-27 02:19:42 +0200
commit8d65d69b8d1ab4e45d0b42dd4e9e6d9a0bedc9a0 (patch)
tree18048b2b60daadb4c8086bff67de48374e456497 /keyboards/pearl/pearl.h
parent535a4d55ae27746d88f4012a6ec717e89b5cee00 (diff)
downloadqmk_firmware-8d65d69b8d1ab4e45d0b42dd4e9e6d9a0bedc9a0.tar.gz
qmk_firmware-8d65d69b8d1ab4e45d0b42dd4e9e6d9a0bedc9a0.tar.xz
More QMK Configurator Support for Pearl (#2814)
* Rename LAYOUT to LAYOUT_all Add additional layouts for the pearl with all splits and the pearl with splits but a 6.25u spacebar. * add new layouts to info.json
Diffstat (limited to 'keyboards/pearl/pearl.h')
-rw-r--r--keyboards/pearl/pearl.h27
1 files changed, 26 insertions, 1 deletions
diff --git a/keyboards/pearl/pearl.h b/keyboards/pearl/pearl.h
index 4c3f0cb6f..900d4817a 100644
--- a/keyboards/pearl/pearl.h
+++ b/keyboards/pearl/pearl.h
@@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "quantum.h"
#include "pearl.h"
-#define LAYOUT( \
+#define LAYOUT_all( \
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C,\
K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, \
K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B,\
@@ -33,4 +33,29 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
{ K30, K31, K32, KC_NO, K34, K35, KC_NO, K37, KC_NO, K39, K3A, KC_NO, KC_NO}, \
}
+#define LAYOUT_splits( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C,\
+ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B,\
+ K30, K31, K32, K34, K37, K39, K3A\
+){ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C}, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, KC_NO}, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO}, \
+ { K30, K31, K32, KC_NO, K34, KC_NO, KC_NO, K37, KC_NO, K39, K3A, KC_NO, KC_NO}, \
+}
+
+#define LAYOUT_spacebar( \
+ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C,\
+ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, \
+ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B,\
+ K30, K31, K35, K39, K3A\
+){ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C}, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, KC_NO}, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, KC_NO}, \
+ { K30, K31, KC_NO, KC_NO, K34, K35, KC_NO, KC_NO, KC_NO, K39, K3A, KC_NO, KC_NO}, \
+}
+
+
#endif