summary refs log tree commit diff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2022-02-04 11:23:30 -0800
committerGitHub <noreply@github.com>2022-02-04 19:23:30 +0000
commitb4ceefde37bd0c5c003e04ab780bb826df93fb7a (patch)
treed3d5a87d096a5c6703eda5f12381b99e2379cbec
parent6a35788b636ba226edc2b41f5db29ceafd531b5b (diff)
Format code according to conventions (#16211)
-rw-r--r--quantum/rgb_matrix/animations/pixel_flow_anim.h12
1 files changed, 5 insertions, 7 deletions
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();
     }