aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/kudox/columner/columner.h
diff options
context:
space:
mode:
authorくまお工房 <52371962+kumaokobo@users.noreply.github.com>2019-11-20 05:51:47 +0900
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2019-11-19 12:51:47 -0800
commitbb87bdec82433053eef68caa5fe4a03083a13e9c (patch)
tree6d726c80f221eb7fc3b446d36c4d435abdee5169 /keyboards/kudox/columner/columner.h
parent687a24f2980e6e490ac8e43104f4176b033c9243 (diff)
downloadfirmware-bb87bdec82433053eef68caa5fe4a03083a13e9c.tar.gz
firmware-bb87bdec82433053eef68caa5fe4a03083a13e9c.tar.bz2
firmware-bb87bdec82433053eef68caa5fe4a03083a13e9c.zip
[Keyboard] Add Kudox column-staggered layout. (#7400)
* Add Kudox columner layout. * Remove an extra comma from info.json.
Diffstat (limited to 'keyboards/kudox/columner/columner.h')
-rw-r--r--keyboards/kudox/columner/columner.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/keyboards/kudox/columner/columner.h b/keyboards/kudox/columner/columner.h
new file mode 100644
index 000000000..dcc745ddb
--- /dev/null
+++ b/keyboards/kudox/columner/columner.h
@@ -0,0 +1,23 @@
+#pragma once
+
+#include "quantum.h"
+
+#define LAYOUT( \
+ L00, L01, L02, L03, L04, L05, L06, R06, R05, R04, R03, R02, R01, R00, \
+ L10, L11, L12, L13, L14, L15, L16, R16, R15, R14, R13, R12, R11, R10, \
+ L20, L21, L22, L23, L24, L25, R25, R24, R23, R22, R21, R20, \
+ L30, L31, L32, L33, L34, L35, R35, R34, R33, R32, R31, R30, \
+ L40, L41, L42, L43, L44, L45, L46, R46, R45, R44, R43, R42, R41, R40 \
+) \
+{ \
+ { L00, L01, L02, L03, L04, L05, L06 }, \
+ { L10, L11, L12, L13, L14, L15, L16 }, \
+ { L20, L21, L22, L23, L24, L25 }, \
+ { L30, L31, L32, L33, L34, L35 }, \
+ { L40, L41, L42, L43, L44, L45, L46 }, \
+ { R00, R01, R02, R03, R04, R05, R06 }, \
+ { R10, R11, R12, R13, R14, R15, R16 }, \
+ { R20, R21, R22, R23, R24, R25 }, \
+ { R30, R31, R32, R33, R34, R35 }, \
+ { R40, R41, R42, R43, R44, R45, R46 } \
+}