FastLED 3.9.15
Loading...
Searching...
No Matches

◆ hsv2rgb_rainbow()

FASTLED_NAMESPACE_BEGIN void hsv2rgb_rainbow ( const struct CHSV * phsv,
struct CRGB * prgb,
int numLeds )

Forward declaration of hsv2rgb_rainbow here, to avoid circular dependencies.

See also
hsv2rgb_rainbow(const struct CHSV&, struct CRGB&)
Parameters
phsvCHSV array to convert to RGB. Max hue supported is HUE_MAX_RAINBOW
prgbCRGB array to store the result of the conversion (will be modified)
numLedsthe number of array values to process

Definition at line 485 of file hsv2rgb.cpp.

485 {
486 for(int i = 0; i < numLeds; ++i) {
487 hsv2rgb_rainbow(phsv[i], prgb[i]);
488 }
489}
void hsv2rgb_rainbow(const CHSV &hsv, CRGB &rgb)
Definition hsv2rgb.cpp:251

References hsv2rgb_rainbow().

+ Here is the call graph for this function: