選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
277B

  1. #include <Entropy.h>
  2. void setup()
  3. {
  4. uint8_t random_byte;
  5. Entropy.Initialize();
  6. // Simulate rolling a six sided die; i.e. produce the numbers 1 through 6 with
  7. // equal probability
  8. random_byte = Entropy.random(1,7); // returns a value from 1 to 6
  9. }
  10. void loop()
  11. {
  12. }