FastLED 3.9.12
Loading...
Searching...
No Matches
WS2816.ino

Note that the WS2816 has a 4 bit gamma correction built in.

Note that the WS2816 has a 4 bit gamma correction built in. As of 3.9.12, no gamma correction in FastLED is applied. However, in the future this could change to improve the color accuracy.

#include <FastLED.h>
// How many leds in your strip?
#define NUM_LEDS 1
#define DATA_PIN 3
// Define the array of leds
CRGB leds[NUM_LEDS];
void setup() {
// Uncomment/edit one of the following lines for your leds arrangement.
// ## Clockless types ##
FastLED.addLeds<WS2816, DATA_PIN>(leds, NUM_LEDS); // GRB ordering is assumed
}
void loop() {
// Turn the LED on, then pause
leds[0] = CRGB::Red;
delay(500);
// Now turn the LED off, then pause
leds[0] = CRGB::Black;
delay(500);
}
CFastLED FastLED
Global LED strip management instance.
Definition FastLED.cpp:45
central include file for FastLED, defines the CFastLED class/object
void show(uint8_t scale)
Update all our controllers with the current led colors, using the passed in brightness.
Definition FastLED.cpp:94
static CLEDController & addLeds(CLEDController *pLed, struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset=0)
Add a CLEDController instance to the world.
Definition FastLED.cpp:79
WS2816 controller class.
Definition FastLED.h:198
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:54
@ Red
Definition crgb.h:608
@ Black
Definition crgb.h:496