~ruther/qmk_firmware

ref: 7b838f330f11a2dd3ffb49b2ffbea48020004b7c qmk_firmware/quantum/led_matrix/animations/band_anim.h -rw-r--r-- 455 bytes
7b838f33 — Duncan Sutherland add tkl_(ansi|iso)_wkl* community layouts (#21809) 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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     // ENABLE_LED_MATRIX_BAND
Do not follow this link