~ruther/qmk_firmware

ref: a8e9d4f2078795f1f51a06c4fb88cff3c475fca2 qmk_firmware/quantum/rgb_matrix/animations/cycle_pinwheel_anim.h -rw-r--r-- 456 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_PINWHEEL
RGB_MATRIX_EFFECT(CYCLE_PINWHEEL)
#    ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS

static HSV CYCLE_PINWHEEL_math(HSV hsv, int16_t dx, int16_t dy, uint8_t time) {
    hsv.h = atan2_8(dy, dx) + time;
    return hsv;
}

bool CYCLE_PINWHEEL(effect_params_t* params) {
    return effect_runner_dx_dy(params, &CYCLE_PINWHEEL_math);
}

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