Skip to content

Commit

Permalink
Fix the use of LED limits (qmk#17678)
Browse files Browse the repository at this point in the history
  • Loading branch information
filterpaper authored and nolanseaton committed Jan 23, 2023
1 parent f0087aa commit 1f3e46b
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions quantum/rgb_matrix/animations/raindrops_anim.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,22 @@ static void raindrops_set_color(int i, effect_params_t* params) {
deltaH += 256;
}

hsv.h = rgb_matrix_config.hsv.h + (deltaH * (rand() & 0x03));
hsv.h = rgb_matrix_config.hsv.h + (deltaH * (random8() & 0x03));
RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
}

bool RAINDROPS(effect_params_t* params) {
RGB_MATRIX_USE_LIMITS(led_min, led_max);
if (!params->init) {
// Change one LED every tick, make sure speed is not 0
if (scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 16)) % 10 == 0) {
raindrops_set_color(rand() % DRIVER_LED_TOTAL, params);
raindrops_set_color(random8() % DRIVER_LED_TOTAL, params);
}
} else {
for (int i = led_min; i < led_max; i++) {
raindrops_set_color(i, params);
}
return false;
}

RGB_MATRIX_USE_LIMITS(led_min, led_max);
for (int i = led_min; i < led_max; i++) {
raindrops_set_color(i, params);
}
return rgb_matrix_check_finished_leds(led_max);
}
Expand Down

0 comments on commit 1f3e46b

Please sign in to comment.