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

◆ hsv2rgb_spectrum() [3/3]

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

Convert an HSV value to RGB using a mathematically straight spectrum.

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

Definition at line 491 of file hsv2rgb.cpp.

491 {
492 for(int i = 0; i < numLeds; ++i) {
493 hsv2rgb_spectrum(phsv[i], prgb[i]);
494 }
495}
void hsv2rgb_spectrum(const struct CHSV &hsv, CRGB &rgb)
Convert an HSV value to RGB using a mathematically straight spectrum.
Definition hsv2rgb.cpp:226

References hsv2rgb_spectrum().

+ Here is the call graph for this function: