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

◆ hsv2rgb_rainbow() [3/3]

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

See also
hsv2rgb_rainbow(const CHSV&, 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 527 of file hsv2rgb.cpp.hpp.

527 {
528 for(int i = 0; i < numLeds; ++i) {
529 hsv2rgb_rainbow(phsv[i], prgb[i]);
530 }
531}
CRGB hsv2rgb_rainbow(const CHSV &hsv)

References hsv2rgb_rainbow().

+ Here is the call graph for this function: