mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 13:22:31 +01:00 
			
		
		
		
	 ecd21b44a8
			
		
	
	
		ecd21b44a8
		
	
	
	
	
		
			
			* Fix reversed bool check in layer_state_set * Add Quefrency 65 for a friend * Add Ergodox EZ Glow keymap * Add RGB Matrix Code * Further changes to rgb matrix ErgoDox EZ * Update bjohnson keymaps * Fix CRKBD display * Overhaul to corne keyboard * Narrow scope for keylogger * Minor layout tweaks to Corne Keyboard * additional CRKBD tweaks * Minor tweaks to CRKBD * Add all characters for keylogger * Ergodox EZ Glow overhaul * Fix Ergodox EZ Glow layer colors * Increase Tapping Term for Corne Keyboard * Fix unicode-ish * Revert some changes * Add layer specific lighting effects * Some minor tweaks to ergodox glow config * revert changes to ergodox files * Update Glow readme * Add more tapping term defines * Fix changes * Fix ergodox keymap * Hopefully fix sleeping * Disable layer indications if rgb matrix is disabled * Add support for sleeping and rgb layer change toggle to ergodox ez glow * Make RGB Layer Indication Great Again * Make Unicode Great Again * Remove placeholder define Co-Authored-By: drashna <drashna@live.com> * Remove placeholder define Co-Authored-By: drashna <drashna@live.com> * Remove old EEPROM Reset keycode
		
			
				
	
	
		
			19 lines
		
	
	
		
			304 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			304 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef USERSPACE
 | |
| #define USERSPACE
 | |
| 
 | |
| #include "quantum.h"
 | |
| #include "version.h"
 | |
| #include "eeprom.h"
 | |
| 
 | |
| // Define layer names
 | |
| #define BASE 0
 | |
| 
 | |
| enum custom_keycodes {
 | |
|   VRSN = SAFE_RANGE, // can always be here
 | |
|   KC_MAKE,
 | |
|   KC_RESET,
 | |
|   NEWPLACEHOLDER  //use "NEWPLACEHOLDER for keymap specific codes
 | |
| };
 | |
| 
 | |
| #endif
 |