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

◆ minutes16()

LIB8STATIC u16 fl::minutes16 ( )

Return the current minutes since boot in a 16-bit value.

Definition at line 26 of file time_functions.h.

26 {
27 u32 ms = fl::millis();
28 u16 m16;
29 m16 = (ms / (60000L)) & 0xFFFF;
30 return m16;
31}
fl::u32 millis()
Universal millisecond timer - returns milliseconds since system startup.

References FL_NOEXCEPT, LIB8STATIC, and millis().

+ Here is the call graph for this function: