-
Notifications
You must be signed in to change notification settings - Fork 46
Home
Marc Miller edited this page Jan 27, 2020
·
5 revisions
Welcome to the FastLED_examples wiki!
leds[i] = CRGB(255,0,0); // using R,G,B
leds[i] = CHSV(42,255,255); // using H,S,V
leds[i] = 0xE1A024; // using Hex value
leds[i] = CRGB::Purple; // using web color names
leds[i] = CRGB(255,0,0); // using R,G,B
leds[i] = CHSV(42,255,255); // using H,S,V
leds[i] = 0xE1A024; // using Hex value
leds[i] = CRGB::Purple; // using web color names
CRGB CustomColor(0,128,128);
Then in your code
you could have: leds[i] = CustomColor;
for example.
Link test: FastLED-HSV-Colors
image link test.
Temp update for the FastLED "Best of FastLED Discussions" page, since G+ will be going away.