You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
esp_random provides a 32 bit random integer so a number between 0 and 4294967295.
Returning a modulo number is biased. For example if howbig is 100, then all numbers between 0 and 95 have the same probability but numbers between 96 and 99 have a lower probability.