FastLED 3.9.15
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages

◆ maxValue()

uint8_t fl::Tile2x2_u8::maxValue ( ) const
inline

Definition at line 43 of file tile2x2.h.

43 {
44 uint8_t max = 0;
45 max = MAX(max, at(0, 0));
46 max = MAX(max, at(0, 1));
47 max = MAX(max, at(1, 0));
48 max = MAX(max, at(1, 1));
49 return max;
50 }
uint8_t & at(int x, int y)
Definition tile2x2.h:35
#define MAX(a, b)
Definition math_macros.h:11

References at(), and MAX.

+ Here is the call graph for this function: