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

◆ min3()

uint8_t fl::anonymous_namespace{rgbw.cpp}::min3 ( uint8_t a,
uint8_t b,
uint8_t c )
inline

Definition at line 16 of file rgbw.cpp.

16 {
17 if (a < b) {
18 if (a < c) {
19 return a;
20 } else {
21 return c;
22 }
23 } else {
24 if (b < c) {
25 return b;
26 } else {
27 return c;
28 }
29 }
30}

References min3().

Referenced by min3().

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