PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
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. }