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

◆ next_random32()

u32 fl::fl_random::next_random32 ( )
inlineprivate

Generate next 32-bit random number using this instance's seed.

Returns
The next 32-bit random number

Definition at line 34 of file random.h.

34 {
35 u32 high = next_random16();
36 u32 low = next_random16();
37 return (high << 16) | low;
38 }
u16 next_random16()
Generate next 16-bit random number using this instance's seed.
Definition random.h:27

References next_random16().

Referenced by operator()(), and operator()().

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