~ruther/qmk_firmware

ref: a8e9d4f2078795f1f51a06c4fb88cff3c475fca2 qmk_firmware/quantum/rgb_matrix/animations/cycle_all_anim.h -rw-r--r-- 391 bytes
a8e9d4f2 — Joel Challis Add embed to docs capabilities (#23698) 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef ENABLE_RGB_MATRIX_CYCLE_ALL
RGB_MATRIX_EFFECT(CYCLE_ALL)
#    ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS

static HSV CYCLE_ALL_math(HSV hsv, uint8_t i, uint8_t time) {
    hsv.h = time;
    return hsv;
}

bool CYCLE_ALL(effect_params_t* params) {
    return effect_runner_i(params, &CYCLE_ALL_math);
}

#    endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
#endif     // ENABLE_RGB_MATRIX_CYCLE_ALL
Do not follow this link