I'm trying to use a random number generator for an audio sequencer using the latest Entropy library and a Teensy 4.0. Everything compiles and appears to work, but simply using Entropy.random(0,15); for a 16-step sequence appears to repeat every 64 numbers. Does this library use a seed function? How should this library be used to improve the randomness, assuming I'm looking for uniform distribution? Also, it looks like there's a normal distribution method Entropy.rnorm(mean, stdv) in there as well, which could be fun to use! But I can't seem to find the documentation for the latest library. Does anyone have some links that could help educate me on the use of the newest Entropy library for a T4.x or at least show me where to find the header file (I'm using PlatformIO)? I read something about a hardware true random number generator which I would love to play around with! Thanks for any tips!