当前位置:网站首页>arduino获取随机数
arduino获取随机数
2022-07-06 09:16:00 【一入极客深似海】
使用 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(){
}
边栏推荐
猜你喜欢
随机推荐
Stage 4 MySQL database
[BSidesCF_2020]Had_a_bad_day
第4阶段 Mysql数据库
[yarn] CDP cluster yarn configuration capacity scheduler batch allocation
RT-Thread的main线程“卡死”的一种可能原因及解决方案
[Presto] Presto parameter configuration optimization
【CDH】CDH/CDP 环境修改 cloudera manager默认端口7180
{one week summary} take you into the ocean of JS knowledge
L2-006 tree traversal (25 points)
XML file explanation: what is XML, XML configuration file, XML data file, XML file parsing tutorial
[NPUCTF2020]ReadlezPHP
nodejs 详解
Kaggle竞赛-Two Sigma Connect: Rental Listing Inquiries
4. Install and deploy spark (spark on Yan mode)
Togglebutton realizes the effect of switching lights
Redis面试题
Word排版(小計)
nodejs连接Mysql
機器學習--線性回歸(sklearn)
Reading BMP file with C language