You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
553 B

  1. #ifdef ENABLE_RGB_MATRIX_DUAL_BEACON
  2. RGB_MATRIX_EFFECT(DUAL_BEACON)
  3. # ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
  4. static HSV DUAL_BEACON_math(HSV hsv, int8_t sin, int8_t cos, uint8_t i, uint8_t time) {
  5. 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;
  6. return hsv;
  7. }
  8. bool DUAL_BEACON(effect_params_t* params) {
  9. return effect_runner_sin_cos_i(params, &DUAL_BEACON_math);
  10. }
  11. # endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
  12. #endif // ENABLE_RGB_MATRIX_DUAL_BEACON