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
511 B

  1. #ifdef ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT
  2. RGB_MATRIX_EFFECT(BAND_SPIRAL_SAT)
  3. # ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
  4. static HSV BAND_SPIRAL_SAT_math(HSV hsv, int16_t dx, int16_t dy, uint8_t dist, uint8_t time) {
  5. hsv.s = scale8(hsv.s + dist - time - atan2_8(dy, dx), hsv.s);
  6. return hsv;
  7. }
  8. bool BAND_SPIRAL_SAT(effect_params_t* params) {
  9. return effect_runner_dx_dy_dist(params, &BAND_SPIRAL_SAT_math);
  10. }
  11. # endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
  12. #endif // ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT