summaryrefslogtreecommitdiff
path: root/keyboards/ergoslab/rev1/rev1.h
diff options
context:
space:
mode:
authorTom Saleeba <tom.saleeba@gmail.com>2020-01-03 09:10:13 +1030
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2020-01-02 14:40:13 -0800
commit474f7f399c707a61448b353c5d614cefa47ff69a (patch)
tree96ba35c9267a32bc2f153af5e0adc64adc43330f /keyboards/ergoslab/rev1/rev1.h
parent61173dce5d85eb778b43a0af76c42eb217ac49ca (diff)
[Keyboard] add initial ergoslab directory (#7730)
* feat: add initial ergoslab directory * fix: address all comments from noroadsleft * fix: address comment from drashna * feat: add swap hands config to ergoslab * chore: change ergoslab image to real photo * re
Diffstat (limited to 'keyboards/ergoslab/rev1/rev1.h')
-rw-r--r--keyboards/ergoslab/rev1/rev1.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/ergoslab/rev1/rev1.h b/keyboards/ergoslab/rev1/rev1.h
new file mode 100644
index 0000000000..bf99a17b23
--- /dev/null
+++ b/keyboards/ergoslab/rev1/rev1.h
@@ -0,0 +1,24 @@
+#pragma once
+
+#include "ergoslab.h"
+
+#include "quantum.h"
+
+#define LAYOUT_ergoslab( \
+ L00, L01, L02, L03, L04, R04, R03, R02, R01, R00, \
+ L10, L11, L12, L13, L14, R14, R13, R12, R11, R10, \
+ L20, L21, L22, L23, L24, R24, R23, R22, R21, R20, \
+ L30, L31, L32, L33, L34, L35, R35, R34, R33, R32, R31, R30, \
+ L41, L42, L43, L44, L45, R45, R44, R43, R42, R41 \
+) { \
+ { L00, L01, L02, L03, L04, KC_NO }, \
+ { L10, L11, L12, L13, L14, KC_NO }, \
+ { L20, L21, L22, L23, L24, KC_NO }, \
+ { L30, L31, L32, L33, L34, L35 }, \
+ { KC_NO, L41, L42, L43, L44, L45 }, \
+ { R00, R01, R02, R03, R04, KC_NO }, \
+ { R10, R11, R12, R13, R14, KC_NO }, \
+ { R20, R21, R22, R23, R24, KC_NO }, \
+ { R30, R31, R32, R33, R34, R35 }, \
+ { KC_NO, R41, R42, R43, R44, R45 } \
+ }