summaryrefslogtreecommitdiff
path: root/keyboards/rart/rartlice/rartlice.h
diff options
context:
space:
mode:
authorAlabahuy <rezzaadio@gmail.com>2020-10-19 03:41:53 +0700
committerGitHub <noreply@github.com>2020-10-18 13:41:53 -0700
commite468380be62f11f8edb93eb4eb440ae7b50cb00f (patch)
treec374eaba9f9d4e8a31b751217fc3f16caa2a1b98 /keyboards/rart/rartlice/rartlice.h
parent84566256552d23fee04c65dd0345fbfbc4df0741 (diff)
[Keyboard] add rartlice (#10495)
* Create bootloader_defs.h * Create chconf.h * Create config.h * Create halconf.h * Create info.json * Create mcuconf.h * Create rartlice.c * Create rartlice.h * Create readme.md * Update readme.md * Create rules.mk * Create keymap.c * Update config.h * Update rules.mk * Update config.h * Update keymap.c * Update rules.mk * Delete bootloader_defs.h * Update rules.mk
Diffstat (limited to 'keyboards/rart/rartlice/rartlice.h')
-rw-r--r--keyboards/rart/rartlice/rartlice.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/keyboards/rart/rartlice/rartlice.h b/keyboards/rart/rartlice/rartlice.h
new file mode 100644
index 0000000000..ea8b130e4c
--- /dev/null
+++ b/keyboards/rart/rartlice/rartlice.h
@@ -0,0 +1,27 @@
+#pragma once
+
+#include "quantum.h"
+
+/* 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.
+ */
+
+#define LAYOUT_all( \
+ K00, K01, K02, K03, K04, K14, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, \
+ K10, K11, K12, K13, K24, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, \
+ K20, K21, K22, K23, K34, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, \
+ K31, K32, K33, K44, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3E, \
+ K41, K43, K45, K46, K48, K4A, K4C, K4D, K4E \
+) \
+{ \
+ { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E }, \
+ { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E }, \
+ { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, KC_NO }, \
+ { KC_NO, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, KC_NO, K3E }, \
+ { KC_NO, K41, KC_NO, K43, K44, K45, K46, KC_NO, K48, KC_NO, K4A, KC_NO, K4C, K4D, K4E }, \
+}