aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/qaz/qaz.h
diff options
context:
space:
mode:
authortominabox1 <tom.campie@gmail.com>2020-07-27 17:10:40 -0500
committerGitHub <noreply@github.com>2020-07-27 18:10:40 -0400
commit6104609afa666750be49ccfa8df8d3ad87fb4f32 (patch)
tree3118aa07e4c42a53593769ad87c77bcc0afb358a /keyboards/qaz/qaz.h
parent5cbac94d08257a6149c5717d7f25efab7af9c0fa (diff)
downloadfirmware-6104609afa666750be49ccfa8df8d3ad87fb4f32.tar.gz
firmware-6104609afa666750be49ccfa8df8d3ad87fb4f32.tar.bz2
firmware-6104609afa666750be49ccfa8df8d3ad87fb4f32.zip
QAZ Keyboard (#9714)
* Initial qaz commit * Enable combos * Improved default keymaps * Fixed configurator json * Via initial * Corrected VIA json * touch * Via fixes * Fixed via matrix * Formatting * Add lighting to qaz * Add rgb animations, add rgb to l2, fix error in via json, enable rgblight by default * Update QAZ readme * Remove VIA json, prep for PR * Correct default bootloader for pro-micro * Remove accidentally added submodules * Change names of layout macros * Move combo defs to keymap folders, fix layout names in info.json * Fixes transposition of comma and dot keys on default keymaps * Update keyboards/qaz/keymaps/default/config.h Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/qaz/keymaps/default_big_space/config.h Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/qaz/rules.mk Co-authored-by: Joel Challis <git@zvecr.com> * Update keyboards/qaz/readme.md Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> * Update keyboards/qaz/rules.mk Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/qaz/qaz.h')
-rw-r--r--keyboards/qaz/qaz.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/keyboards/qaz/qaz.h b/keyboards/qaz/qaz.h
new file mode 100644
index 000000000..aba68d3d2
--- /dev/null
+++ b/keyboards/qaz/qaz.h
@@ -0,0 +1,33 @@
+#pragma once
+
+#include "quantum.h"
+
+#define XXX KC_NO
+
+#define LAYOUT_split_space( \
+ K00, K01, K02, K03, K04, K05, K06, K40, K41, K42, \
+ K10, K11, K12, K13, K14, K15, K16, K50, K51, K52, \
+ K20, K21, K22, K23, K24, K25, K26, K43, K53, \
+ K30, K31, K32, K33, K34, K35, K36, K44 \
+) { \
+{ K00, K01, K02, K03, K04, K05, K06 }, \
+{ K10, K11, K12, K13, K14, K15, K16 }, \
+{ K20, K21, K22, K23, K24, K25, K26 }, \
+{ K30, K31, K32, K33, K34, K35, K36 }, \
+{ K40, K41, K42, K43, K44, XXX, XXX }, \
+{ K50, K51, K52, K53, XXX, XXX, XXX } \
+}
+
+#define LAYOUT( \
+ K00, K01, K02, K03, K04, K05, K06, K40, K41, K42, \
+ K10, K11, K12, K13, K14, K15, K16, K50, K51, K52, \
+ K20, K21, K22, K23, K24, K25, K26, K43, K53, \
+ K30, K31, K34, K36, K44 \
+) { \
+{ K00, K01, K02, K03, K04, K05, K06 }, \
+{ K10, K11, K12, K13, K14, K15, K16 }, \
+{ K20, K21, K22, K23, K24, K25, K26 }, \
+{ K30, K31, XXX, XXX, K34, XXX, K36 }, \
+{ K40, K41, K42, K43, K44, XXX, XXX }, \
+{ K50, K51, K52, K53, XXX, XXX, XXX } \
+}