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

◆ getPaddingLEDFrame()

template<int DATA_PIN, fl::u8 CLOCK_PIN, EOrder RGB_ORDER = RGB, fl::u32 SPI_SPEED = DATA_RATE_MHZ(1)>
static fl::span< const fl::u8 > WS2801Controller< DATA_PIN, CLOCK_PIN, RGB_ORDER, SPI_SPEED >::getPaddingLEDFrame ( )
inlinestatic

Get a black LED frame for synchronized latching Used for quad-SPI lane padding to ensure all strips latch simultaneously.

Returns
Black LED frame (invisible LED: RGB all zero)

Definition at line 57 of file ws2801.h.

57 { // okay static in header
58 static const fl::u8 frame[] = { // okay static in header
59 0x00, // Red = 0
60 0x00, // Green = 0
61 0x00 // Blue = 0
62 };
64 }
WS2801 controller class.
Definition ws2801.h:25