aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/maartenwut/wonderland/wonderland.h
diff options
context:
space:
mode:
authorYan-Fa Li <yanfali@gmail.com>2019-08-24 23:44:20 -0700
committernoroadsleft <18669334+noroadsleft@users.noreply.github.com>2019-08-24 23:44:20 -0700
commitf6da00b85d32f5bc451f5c89e26845434ae62bed (patch)
treec057e5e4cea14de4b7652feb93c499af89567702 /keyboards/maartenwut/wonderland/wonderland.h
parent43b03099702265ef514cb84236d9031e04047837 (diff)
downloadfirmware-f6da00b85d32f5bc451f5c89e26845434ae62bed.tar.gz
firmware-f6da00b85d32f5bc451f5c89e26845434ae62bed.tar.bz2
firmware-f6da00b85d32f5bc451f5c89e26845434ae62bed.zip
[Keyboard] Maartenwut Wonderland PCB (#6492)
* Initial Commit * ID * Use current manu name * Fix define DEBOUNCE Co-Authored-By: fauxpark <fauxpark@gmail.com> * Fix NUM Lock LED detection Co-Authored-By: fauxpark <fauxpark@gmail.com> * Fix CAPs LED detection Co-Authored-By: fauxpark <fauxpark@gmail.com> * Fix Scroll Lock LED detection Co-Authored-By: fauxpark <fauxpark@gmail.com> * Use correct convention for setting pins * Move folder to maartenwut - enable velocikey * Fix columns size * Sync with homerowco * Add Keebs keymap * Best practices * Latest keymap changes from homerowco
Diffstat (limited to 'keyboards/maartenwut/wonderland/wonderland.h')
-rwxr-xr-xkeyboards/maartenwut/wonderland/wonderland.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/maartenwut/wonderland/wonderland.h b/keyboards/maartenwut/wonderland/wonderland.h
new file mode 100755
index 000000000..075e3f64b
--- /dev/null
+++ b/keyboards/maartenwut/wonderland/wonderland.h
@@ -0,0 +1,22 @@
+#pragma once
+#include "quantum.h"
+
+// readability
+#define XXX KC_NO
+#define LAYOUT( \
+ k10, k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, \
+ k20, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, \
+ k30, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2e, \
+ k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \
+ k41, k43, k45, k46, k48, k4a, 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, XXX, k2e}, \
+ {k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e}, \
+ {XXX, k41, XXX, k43, XXX, k45, k46, XXX, k48, XXX, k4a, XXX, XXX, XXX, k4e} \
+}
+
+void matrix_init_user(void);
+void matrix_scan_user(void);