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.

13 lines
606 B

  1. #ifdef ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS
  2. RGB_MATRIX_EFFECT(RAINBOW_PINWHEELS)
  3. # ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
  4. static HSV RAINBOW_PINWHEELS_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) * 3 * cos + (56 - abs8(g_led_config.point[i].x - k_rgb_matrix_center.x)) * 3 * sin) / 128;
  6. return hsv;
  7. }
  8. bool RAINBOW_PINWHEELS(effect_params_t* params) { return effect_runner_sin_cos_i(params, &RAINBOW_PINWHEELS_math); }
  9. # endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
  10. #endif // ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS