~ruther/qmk_firmware

ref: fb0c64a567b6dd2536aae0c2df56a915ffa72404 qmk_firmware/quantum/rgb_matrix/animations/dual_beacon_anim.h -rw-r--r-- 553 bytes
fb0c64a5 — Nick Brassel Allow inline generation of compile_commands.json while doing a `qmk compile`, using `--compiledb` (#21549) 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef ENABLE_RGB_MATRIX_DUAL_BEACON
RGB_MATRIX_EFFECT(DUAL_BEACON)
#    ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS

static HSV DUAL_BEACON_math(HSV hsv, int8_t sin, int8_t cos, uint8_t i, uint8_t time) {
    hsv.h += ((g_led_config.point[i].y - k_rgb_matrix_center.y) * cos + (g_led_config.point[i].x - k_rgb_matrix_center.x) * sin) / 128;
    return hsv;
}

bool DUAL_BEACON(effect_params_t* params) {
    return effect_runner_sin_cos_i(params, &DUAL_BEACON_math);
}

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