├── .gitignore ├── ESP8266TrueRandom.cpp ├── ESP8266TrueRandom.h ├── LICENSE ├── README.md ├── examples ├── Benchmark │ └── Benchmark.ino ├── Die │ └── Die.ino ├── Magic8Ball │ └── Magic8Ball.ino ├── SetRandomSeed │ └── SetRandomSeed.ino └── Uuid │ └── Uuid.ino ├── keywords.txt └── library.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/.gitignore -------------------------------------------------------------------------------- /ESP8266TrueRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/ESP8266TrueRandom.cpp -------------------------------------------------------------------------------- /ESP8266TrueRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/ESP8266TrueRandom.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/README.md -------------------------------------------------------------------------------- /examples/Benchmark/Benchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/examples/Benchmark/Benchmark.ino -------------------------------------------------------------------------------- /examples/Die/Die.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/examples/Die/Die.ino -------------------------------------------------------------------------------- /examples/Magic8Ball/Magic8Ball.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/examples/Magic8Ball/Magic8Ball.ino -------------------------------------------------------------------------------- /examples/SetRandomSeed/SetRandomSeed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/examples/SetRandomSeed/SetRandomSeed.ino -------------------------------------------------------------------------------- /examples/Uuid/Uuid.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/examples/Uuid/Uuid.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvinroger/ESP8266TrueRandom/HEAD/library.json --------------------------------------------------------------------------------