Skip to content

TrueRandom

Haiqiang Xu edited this page Jun 7, 2018 · 1 revision

TrueRandom generates true random numbers on Arduino in contrast to native Arduino random method, incorporated in the repository as a submodule so we can keep track of future improvements.

Its functionalities is wrapped inside a static class TrueRandom so it can be used very easily from the final projects that needs these functionalities. To sum up, is a library that replaces the native random method as this one is actually a pseudo-random method which generates what appear to be random numbers, but calculated from a formula that progresses through a long sequence of random looking numbers which starts at the same point in the sequence on every reset, making it quite predictable.

Clone this wiki locally