summaryrefslogtreecommitdiff
path: root/keyboards/reversestudio/decadepad/decadepad.h
diff options
context:
space:
mode:
authorhuajijam <strhuaji@gmail.com>2020-04-05 13:28:40 +0800
committerGitHub <noreply@github.com>2020-04-04 22:28:40 -0700
commit04c81a04c7d0a96818f6fd4087ca21586faa87f1 (patch)
tree260ed46cad7f96989cad7e09d0399cc0625e3849 /keyboards/reversestudio/decadepad/decadepad.h
parent120fcc58b6454f65616ff08670d74c5b9a5059e1 (diff)
[Keyboard] Add ReverseStudio-DecadePad (#8553)
* ADD DecadePad * Fix Key display bug * fix * firmware1 THIS IS A Backup commit * firmware2 * rename all fill with lower case * fix bug * Final Version Fix all bugs * Requested change apply * suggested apply * change apply * via test * Apply change and fix via support problem
Diffstat (limited to 'keyboards/reversestudio/decadepad/decadepad.h')
-rw-r--r--keyboards/reversestudio/decadepad/decadepad.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/keyboards/reversestudio/decadepad/decadepad.h b/keyboards/reversestudio/decadepad/decadepad.h
new file mode 100644
index 0000000000..7da10094c7
--- /dev/null
+++ b/keyboards/reversestudio/decadepad/decadepad.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "quantum.h"
+#define LAYOUT_numpad_6x4( \
+ k01, k02, k03, k04, \
+ k11, k12, k13, k14, \
+ k21, k22, k23, \
+ k31, k32, k33, k34, \
+ k41, k42, k43, \
+ k51, k53, k54 \
+) \
+{ \
+ { k01, k02, k03, k04 }, \
+ { k11, k12, k13, k14 }, \
+ { k21, k22, k23, KC_NO }, \
+ { k31, k32, k33, k34 }, \
+ { k41, k42, k43, KC_NO }, \
+ { k51, KC_NO, k53, k54 }, \
+}