* First cut at Josh Diamond's KBD75 customizations. Includes: * My unique keymap with ChromeOS specific keys * Use RGB underglow to indicate Caps Lock * Some unicode bindings * Some changes to make debugging easier * Updated spidey3 to be applicable to all 75_ansi boards * Sadly, ChromeOS doesn't pay attention to most consumer codes * Add mac layer; fix flakeyness in CAPS_LOCK underglow. * Make layers.json match the keymap (to the extent possible) * Major cleanup; fix broken debug persistence * Cleanup some whitespace issues * Fix incorrect log message. * Rework layer indication to user RGBLIGHT_LAYERS * Update layouts/community/75_ansi/spidey3/keymap.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Rename users/spidey3/rgblight.c to layer_rgb.c per suggestion * Refactor to use set_single_persistant_default_layer(). * Use dprint/f to make logging more elegant. * Update users/spidey3/config.h Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update users/spidey3/config.h Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update layouts/community/75_ansi/spidey3/rules.mk Co-Authored-By: Ryan <fauxpark@gmail.com> * Update users/spidey3/spidey3.c Co-Authored-By: Ryan <fauxpark@gmail.com> * Update users/spidey3/layer_rgb.c Co-Authored-By: Ryan <fauxpark@gmail.com> * Update users/spidey3/init.c Co-Authored-By: Ryan <fauxpark@gmail.com> * Changes from code review * Numpad layer, various keys for 75_ansi/spidey3 * Add Fn-B to toggle NKRO * Blink rgb to acknowledge some setting changes * Updated media control & reset key location * Minor cleanup Co-authored-by: Joshua Diamond <jdiamond@Deep-Thought.local> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			853 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			853 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include QMK_KEYBOARD_H
 | |
| 
 | |
| #ifdef UNICODEMAP_ENABLE
 | |
| #include "unicode.h"
 | |
| #endif
 | |
| 
 | |
| enum userspace_layers {
 | |
|   _BASE = 0,
 | |
|   _OSX,
 | |
|   _NUMPAD,
 | |
|   _FN,
 | |
| };
 | |
| 
 | |
| enum rgb_base_layer {
 | |
|   RGB_LAYER_BASE_DEFAULT = _BASE,
 | |
|   RGB_LAYER_BASE_REGULAR = _NUMPAD,
 | |
|   RGB_LAYER_BASE_ACKS = _FN+1,
 | |
| };
 | |
| 
 | |
| enum custom_keycodes {
 | |
|   SPI_GLO = SAFE_RANGE,
 | |
|   SPI_LNX,
 | |
|   SPI_OSX,
 | |
|   SPI_WIN,
 | |
| };
 | |
| 
 | |
| #ifdef RGBLIGHT_ENABLE
 | |
| void eeconfig_init_user_rgb(void);
 | |
| void matrix_init_user_rgb(void);
 | |
| void keyboard_post_init_user_rgb(void);
 | |
| bool process_record_user_rgb(uint16_t keycode, keyrecord_t *record);
 | |
| layer_state_t layer_state_set_user_rgb(layer_state_t state);
 | |
| layer_state_t default_layer_state_set_user_rgb(layer_state_t state);
 | |
| bool led_update_user_rgb(led_t led_state);
 | |
| void clear_rgb_layers(void);
 | |
| #endif
 | |
| 
 | |
| #ifdef UNICODEMAP_ENABLE
 | |
| void eeconfig_init_user_unicode(void);
 | |
| #endif
 | |
| 
 |