aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/shambles/shambles.h
diff options
context:
space:
mode:
authorOsciX <ryrutdavis@gmail.com>2020-05-08 20:08:19 -0400
committerGitHub <noreply@github.com>2020-05-08 17:08:19 -0700
commitcd0edbb1fba91df97be233e30c145f352eda31c0 (patch)
treec109b2ea3dd1b01c29add2f4170304ddbe6fdac5 /keyboards/shambles/shambles.h
parent6919772fb99f34675ee26d202c26af443d6db287 (diff)
downloadfirmware-cd0edbb1fba91df97be233e30c145f352eda31c0.tar.gz
firmware-cd0edbb1fba91df97be233e30c145f352eda31c0.tar.bz2
firmware-cd0edbb1fba91df97be233e30c145f352eda31c0.zip
[Keyboard] Shambles TKL (#8500)
* Add support for the Shambles TKL * Fix Shambles files * Add files via upload * Fix Shambles again * Delete shambles.h.h * Delete shambles.c.c * Add files via upload * Delete Makefile * Apply suggestions from code review * Fix default layout to work with review * Apply suggestions from code review * Add info files * Update readme.md * Update keyboards/shambles/readme.md
Diffstat (limited to 'keyboards/shambles/shambles.h')
-rw-r--r--keyboards/shambles/shambles.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/keyboards/shambles/shambles.h b/keyboards/shambles/shambles.h
new file mode 100644
index 000000000..5fb13b635
--- /dev/null
+++ b/keyboards/shambles/shambles.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "quantum.h"
+
+#define LAYOUT( \
+ K000, K001, K002, K003, K005, K006, K007, K008, K009, K010, K011, K012, \
+ K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, \
+ K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K211, \
+ K300, K301, K302, K303, K305, K306, K307, K308, K310, K311, K312 \
+) { \
+ { K000, K001, K002, K003, KC_NO, K005, K006, K007, K008, K009, K010, K011, K012 }, \
+ { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112 }, \
+ { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, KC_NO, K211, KC_NO }, \
+ { K300, K301, K302, K303, KC_NO, K305, K306, K307, K308, KC_NO, K310, K311, K312 } \
+}