#include inline void random_begin() { // Initialise the system to start gathering entropy ready to generate random numbers later Entropy.initialize(); } inline uint32_t random_get() { return Entropy.random(); }