설명
randomSeed()
는 의사난수 생성기를 초기화하며, 임의 열에서 임의 위치에서 시작하게 한다.
이 열은, 아주 길지만, 임의지만 늘 똑같다.
If it is important for a sequence of values generated by random()
to differ, on subsequent executions of a sketch, use randomSeed() to initialize the random number generator with a fairly random input, such as analogRead()
on an unconnected pin.
Conversely, it can occasionally be useful to use pseudo-random sequences that repeat exactly. This can be accomplished by calling randomSeed()
with a fixed number, before starting the random sequence.
매개변수
long
, int
- 시드를 만들기 위해 숫자를 전달.
반환
없음