Inline version of hsv2rgb_spectrum which returns a CRGB object.
| 44 | |
| 45 | /// Inline version of hsv2rgb_spectrum which returns a CRGB object. |
| 46 | CRGB hsv2rgb_spectrum( const CHSV& hsv) { |
| 47 | CRGB rgb; |
| 48 | hsv2rgb_spectrum(hsv, rgb); |
| 49 | return rgb; |
| 50 | } |
| 51 | |
| 52 | void hsv2rgb_raw_C (const CHSV & hsv, CRGB & rgb) |
| 53 | { |