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

◆ hsv2rgb_raw() [2/2]

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

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

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

Definition at line 521 of file hsv2rgb.cpp.hpp.

521 {
522 for(int i = 0; i < numLeds; ++i) {
523 hsv2rgb_raw(phsv[i], prgb[i]);
524 }
525}
void hsv2rgb_raw(const CHSV &hsv, CRGB &rgb)
Convert an HSV value to RGB using a mathematically straight spectrum.

References hsv2rgb_raw().

+ Here is the call graph for this function: