PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12 lines
141B

  1. #include <Entropy.h>
  2. void setup()
  3. {
  4. Entropy.Initialize();
  5. }
  6. void loop()
  7. {
  8. if (Entropy.available())
  9. randomSeed(Entropy.random());
  10. }