mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 21:32:31 +01:00 
			
		
		
		
	 7da97c293d
			
		
	
	
		7da97c293d
		
			
		
	
	
	
	
		
			
			* Change animations to require explicet activation * Add support for legacy config * Make default for now * Add LED Matrix support * change LED Matrix docs
		
			
				
	
	
		
			14 lines
		
	
	
		
			454 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			454 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifdef ENABLE_LED_MATRIX_BAND
 | |
| LED_MATRIX_EFFECT(BAND)
 | |
| #    ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS
 | |
| 
 | |
| static uint8_t BAND_math(uint8_t val, uint8_t i, uint8_t time) {
 | |
|     int16_t v = val - abs(scale8(g_led_config.point[i].x, 228) + 28 - time) * 8;
 | |
|     return scale8(v < 0 ? 0 : v, val);
 | |
| }
 | |
| 
 | |
| bool BAND(effect_params_t* params) { return effect_runner_i(params, &BAND_math); }
 | |
| 
 | |
| #    endif  // LED_MATRIX_CUSTOM_EFFECT_IMPLS
 | |
| #endif      // DISABLE_LED_MATRIX_BAND
 |