~ruther/qmk_firmware

ref: 6720e9c58c3a239ff0de4be1ff2ad075a0b2c248 qmk_firmware/quantum/rgb_matrix/animations/cycle_all_anim.h -rw-r--r-- 391 bytes
6720e9c5 — Joel Challis `qmk new-keyboard` - detach community layout when selecting "none of the above" (#20405) 1 year, 2 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