Hi, I bought this strip:

Hi,
I bought this strip: WS2811 5050 SMD RGB and I need to adjust color temperature. What value do you suggest? This is best I found so far: .setTemperature(0xFFA861)

There’s a bunch of presets you can try. I made this example to cycle through them.

Also, you can manually dial in a color correction using .setCorrection which would be added like this:

FastLED.addLeds<LPD8806, DATA_PIN, CLOCK_PIN, RGB>(leds, NUM_LEDS).setCorrection(255,128,196);

This (extreme) example would leave red un-touched, reduce green by 50%, and reduce blue by 25%.

@marmil Great script! Thank you. I found this combination as best: Correction - TypicalSMD5050; Temperature - Candle. Is it important which correction is first? For now it’s: FastLED.addLeds<WS2811, LED_PIN, BRG>(leds, NUM_LEDS).setCorrection( TypicalSMD5050 ).setTemperature( Candle ); but maybe is better (for color, or calc speed… etc) to put: FastLED.addLeds<WS2811, LED_PIN, BRG>(leds, NUM_LEDS).setTemperature( Candle ).setCorrection( TypicalSMD5050 );