Hi Bob, the randomness is not actually designed any particular way, so I discovered that the default behaviour of the Arduino's random(...) function is to use a known seed each time. That means that you get the same sequence of random numbers each time - predictable randomness! Same exact path.
http://www.polargraph.co.uk/2013/03/random-scribbles/
If you wanted a more random behaviour, then the number generator needs to be seeded with a different number each time. Not hard to do (sample an unconnected analog pin during setup()), but I've never done it. It wasn't causing a problem for me, so I just left it.
sn
|