PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

random_minmax_example.ino 277B

vor 3 Jahren
12345678910111213141516
  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. }