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

◆ send_byte()

void fl::third_party::ezWS2812gpio::send_byte ( uint8_t byte_value) const
inlineprivate

Send a byte (8 bits) with MSB first.

Definition at line 261 of file ezWS2812.h.

261 {
262 for (int i = 7; i >= 0; i--) {
263 send_bit((byte_value >> i) & 0x01);
264 }
265 }
void send_bit(bool bit_value) const
Send a single bit using precise timing.
Definition ezWS2812.h:183

References send_bit().

Referenced by set_pixel().

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