* 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>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #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 } \
 | |
| }
 |