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

◆ writeWS2803()

template<typename CONTAINER_UIN8_T>
void fl::PixelIterator::writeWS2803 ( CONTAINER_UIN8_T * out)
inline

Encode pixels in WS2803 format (zero allocation)

Parameters
outOutput buffer to write encoded bytes
Note
Protocol: Identical to WS2801
Uses unified encoder: src/fl/chipsets/encoders/ws2803.h

Definition at line 301 of file pixel_iterator.h.

301 {
302 auto back_ins = fl::back_inserter(*out);
303 auto pixel_range = makeScaledPixelRangeRGB(this);
304 encodeWS2803(pixel_range.first, pixel_range.second, back_ins);
305 }
pair< detail::ScaledPixelIteratorRGB, detail::ScaledPixelIteratorRGB > makeScaledPixelRangeRGB(PixelIterator *pixels) FL_NOEXCEPT
Create RGB input iterator range from PixelIterator.
back_insert_iterator< Container > back_inserter(Container &c) FL_NOEXCEPT
Helper function to create a back_insert_iterator.
Definition iterator.h:139
void encodeWS2803(InputIterator first, InputIterator last, OutputIterator out) FL_NOEXCEPT
Encode pixel data in WS2803 format (alias for WS2801)
Definition ws2803.h:31

References fl::back_inserter(), fl::encodeWS2803(), FL_NOEXCEPT, and fl::makeScaledPixelRangeRGB().

Referenced by fl::Channel::showPixels().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: