使用 randomSeed()函数来读取一个未被使用到的引脚,
randomSeed(analogRead(A0)); //使用一个未被使用到的引脚
使用 random()函数来生成随机数,返回 long型
random()函数有两种使用使用方法
random(max); //返回数类型不会 超过所填的数据
random(min,max); //产生一个范围内的随机数
使用示例
void setup() {
Serial.begin(9600);
randomSeed(analogRead(A0)); //使用一个未被使用到的引脚
Serial.println(random(100));
Serial.println(random(100,300));
}
void loop(){
}