FastLED
3.9.15
Loading...
Searching...
No Matches
◆
wrap_8bit()
uint8_t wrap_8bit
(
int
i
)
Definition at line
19
of file
Apa102.ino
.
19
{
20
// Modulo % operator here wraps a large "i" so that it is
21
// always in [0, 255] range when returned. For example, if
22
// "i" is 256, then this will return 0. If "i" is 257,
23
// then this will return 1. No matter how big the "i" is, the
24
// output range will always be [0, 255]
25
return
i % 256;
26
}
examples
Apa102
Apa102.ino
Generated on Fri Apr 18 2025 03:39:31 for FastLED by
1.13.2