* Rules for vitamins_included Added a section to disable RGB underglow for the Let's Split Vitamins Included board. * fixing ortho_4x12 configs * Using upstream/master version instead * Additions and Corrections Corrected the Kinesis/Stapelberg's .c file to allow LEDs to work Removed excess cruft from my Kinesis keymap to reflect this change Other minor tweaks and adjustments to my ortho_4x12 and 5x12 layouts * Updated readme
		
			
				
	
	
		
			33 lines
		
	
	
		
			589 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			589 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef CONFIG_USER_H
 | 
						|
#define CONFIG_USER_H
 | 
						|
 | 
						|
#define MIDI_BASIC
 | 
						|
 | 
						|
#define USE_SERIAL
 | 
						|
 | 
						|
#define EE_HANDS
 | 
						|
 | 
						|
#undef RGBLED_NUM
 | 
						|
#if defined(KEYBOARD_planck_rev5)
 | 
						|
  #define RGBLED_NUM 10
 | 
						|
  #define RGB_DI_PIN D1
 | 
						|
#elif defined(KEYBOARD_levinson_rev2)
 | 
						|
  #define RGBLED_NUM 12
 | 
						|
#elif defined(KEYBOARD_lets_split_rev2)
 | 
						|
  #define RGBLED_NUM 8
 | 
						|
#elif defined(KEYBOARD_jj40)
 | 
						|
  #define RGBLED_NUM 5
 | 
						|
#else
 | 
						|
  #define RGBLED_NUM 1
 | 
						|
#endif
 | 
						|
 | 
						|
#define RGBLIGHT_ANIMATIONS
 | 
						|
#define RGBLIGHT_HUE_STEP 8
 | 
						|
#define RGBLIGHT_SAT_STEP 8
 | 
						|
#define RGBLIGHT_VAL_STEP 8
 | 
						|
 | 
						|
#undef BACKLIGHT_LEVELS
 | 
						|
#define BACKLIGHT_LEVELS 8
 | 
						|
 | 
						|
#endif
 |