hi i have a little problem i don´t understand what this line does
leds = CHSV(i - (j * 2), BRIGHTNESS, SATURATION);
*the full code: *
```
*#include <FastLED.h>
#define NUM_LEDS 60 /* The amount of pixels/leds you have /
#define DATA_PIN 7 / The pin your data line is connected to /
#define LED_TYPE WS2812B / I assume you have WS2812B leds, if not just change it to whatever you have /
#define BRIGHTNESS 255 / Control the brightness of your leds /
#define SATURATION 255 / Control the saturation of your leds */
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<LED_TYPE, DATA_PIN>(leds, NUM_LEDS);
}
void loop() {
for (int j = 0; j < 255; j++) {
for (int i = 0; i < NUM_LEDS; i++) {
leds[i] = CHSV(i - (j * 2), BRIGHTNESS, SATURATION);
}
FastLED.show();
delay(25); /* Change this to your hearts desire, the lower the value the faster your colors move (and vice versa) /
}
}
```