summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix_animations/colorband_sat_anim.h
blob: 35b830af6b93363329fefb7736df4815e480b5b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef DISABLE_RGB_MATRIX_BAND_SAT
RGB_MATRIX_EFFECT(BAND_SAT)
#    ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS

static HSV BAND_SAT_math(HSV hsv, uint8_t i, uint8_t time) {
    int16_t s = hsv.s - abs(scale8(g_led_config.point[i].x, 228) + 28 - time) * 8;
    hsv.s     = scale8(s < 0 ? 0 : s, hsv.s);
    return hsv;
}

bool BAND_SAT(effect_params_t* params) { return effect_runner_i(params, &BAND_SAT_math); }

#    endif  // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
#endif      // DISABLE_RGB_MATRIX_BAND_SAT