Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

16 lines
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. }