Keymap: Add custom keymap for Planck (#9417)
* Keymap: Add custom keymap for Planck * Fixup buffet's planck keymap
This commit is contained in:
		
							parent
							
								
									7be65f2cd0
								
							
						
					
					
						commit
						3eefe31a54
					
				
					 5 changed files with 558 additions and 0 deletions
				
			
		
							
								
								
									
										18
									
								
								keyboards/planck/keymaps/buffet/rgb_matrix_user.inc
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								keyboards/planck/keymaps/buffet/rgb_matrix_user.inc
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,18 @@
 | 
			
		|||
RGB_MATRIX_EFFECT(rainbow_stripe)
 | 
			
		||||
 | 
			
		||||
#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
 | 
			
		||||
 | 
			
		||||
static HSV rainbow_stripe_math(HSV hsv, uint8_t i, uint8_t time) {
 | 
			
		||||
    if (i >= 14 && i <= 21) {
 | 
			
		||||
        hsv.h = g_led_config.point[i].x - time;
 | 
			
		||||
    } else {
 | 
			
		||||
        hsv.v = 0;
 | 
			
		||||
    }
 | 
			
		||||
    return hsv;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool rainbow_stripe(effect_params_t* params) {
 | 
			
		||||
    return effect_runner_i(params, &rainbow_stripe_math);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue