From b4ceefde37bd0c5c003e04ab780bb826df93fb7a Mon Sep 17 00:00:00 2001 From: QMK Bot Date: Fri, 4 Feb 2022 11:23:30 -0800 Subject: Format code according to conventions (#16211) --- quantum/rgb_matrix/animations/pixel_flow_anim.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'quantum') diff --git a/quantum/rgb_matrix/animations/pixel_flow_anim.h b/quantum/rgb_matrix/animations/pixel_flow_anim.h index 0e81cd0111..312c87628c 100644 --- a/quantum/rgb_matrix/animations/pixel_flow_anim.h +++ b/quantum/rgb_matrix/animations/pixel_flow_anim.h @@ -14,15 +14,13 @@ static bool PIXEL_FLOW(effect_params_t* params) { return false; } - inline uint32_t interval(void) { - return 3000 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16); - } + inline uint32_t interval(void) { return 3000 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16); } if (params->init) { // Clear LEDs and fill the state array rgb_matrix_set_color_all(0, 0, 0); for (uint8_t j = 0; j < DRIVER_LED_TOTAL; ++j) { - led[j] = (random8() & 2) ? (RGB){0,0,0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); + led[j] = (random8() & 2) ? (RGB){0, 0, 0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); } } @@ -35,11 +33,11 @@ static bool PIXEL_FLOW(effect_params_t* params) { if (!rgb_matrix_check_finished_leds(led_max)) { // Shift LED state forward - for (uint8_t j = 0; j < led_max-1; ++j) { - led[j] = led[j+1]; + for (uint8_t j = 0; j < led_max - 1; ++j) { + led[j] = led[j + 1]; } // Fill last LED - led[led_max-1] = (random8() & 2) ? (RGB){0,0,0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); + led[led_max - 1] = (random8() & 2) ? (RGB){0, 0, 0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); // Set pulse timer wait_timer = g_rgb_timer + interval(); } -- cgit v1.2.3