File rng.h¶ File List > external-docs > libDaisy > src > per > rng.h Go to the documentation of this file Source Code¶ #pragma once #include "daisy_core.h" namespace daisy { class Random { public: Random() {} ~Random() {} static void Init(); static void DeInit(); static uint32_t GetValue(); static float GetFloat(float min = 0.f, float max = 1.f); static bool IsReady(); }; } // namespace daisy