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

Definition at line 85 of file tile2x2.cpp.

85 {
86 uint8_t max = 0;
87 max = MAX(max, at(0, 0));
88 max = MAX(max, at(0, 1));
89 max = MAX(max, at(1, 0));
90 max = MAX(max, at(1, 1));
91 return max;
92}
uint8_t & at(int x, int y)
Definition tile2x2.h:38
#define MAX(a, b)
Definition math_macros.h:11

References at(), and MAX.

+ Here is the call graph for this function: