- Arduino - 教程
- Arduino - 概述
- Arduino - Board Description
- Arduino - 安装
- Arduino - 程序结构
- Arduino - 数据类型
- Arduino - Variables & 常量
- Arduino - 运算符
- Arduino - 控制声明( Control Statements)
- Arduino - 循环
- Arduino - 功能( Functions)
- Arduino - 字符串( Strings)
- Arduino - String对象( String Object)
- Arduino - Time
- Arduino - 阵列( Arrays)
- Arduino - I/O Functions
- Arduino - Advanced I/O Function
- Arduino - 字符函数( Character Functions)
- Arduino - 数学图书馆( Math Library)
- Arduino - 三角函数( Trigonometric Functions)
- Arduino - Due & Zero
- Arduino - 脉冲宽度调制( Pulse Width Modulation)
- Arduino - 随机数( Random Numbers)
- Arduino - 中断( Interrupts)
- Arduino - 沟通( Communication)
- Arduino - 内部集成电路( Inter Integrated Circuit)
- Arduino - 串行外设接口( Serial Peripheral Interface)
- Arduino - 闪烁LED( Blinking LED)
- Arduino - 褪色LED( Fading LED)
- Arduino - 读取模拟电压( Reading Analog Voltage)
- Arduino - LED条形图( LED Bar Graph)
- Arduino - 键盘注销( Keyboard Logout)
- Arduino - 键盘消息( Keyboard Message)
- Arduino - 鼠标按钮控制( Mouse Button Control)
- Arduino - 键盘串口( Keyboard Serial)
- Arduino - 湿度传感器( Humidity Sensor)
- Arduino - 温度传感器( Temperature Sensor)
- Arduino - Water Detector / Sensor
- Arduino - PIR传感器( PIR Sensor)
- Arduino - 超声波传感器( Ultrasonic Sensor)
- Arduino - 连接开关( Connecting Switch)
- Arduino - 直流电机( DC Motor)
- Arduino - 伺服电机( Servo Motor)
- Arduino - 步进电机( Stepper Motor)
- Arduino - 音调库( Tone Library)
- Arduino - 无线通信( Wireless Communication)
- Arduino - 网络通信( Network Communication)
- Arduino - 有用的资源
- Arduino - 讨论
- Show Example 1
- Show Example 2
- Show Example 3
- Show Example 4
- Show Example 5
- If statement
- If …else statement
- If…else if …else statement
- switch case statement
- Conditional Operator ? :
- while循环
- do…while循环
- for循环
- Nested循环
- Infinite循环
- delay () function
- delayMicroseconds () function
- millis () function
- micros () function
- 将数组传递给函数(Passing Arrays to Functions)
- 多维数组(Multi-Dimensional Arrays)
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
Arduino - 随机数( Random Numbers)
要生成随机数,您可以使用Arduino随机数函数。 我们有两个功能 -
- randomSeed(seed)
- random()
randomSeed (seed)
函数randomSeed(seed)重置Arduino的伪随机数生成器。 尽管random()返回的数字的分布基本上是随机的,但序列是可预测的。 您应该将生成器重置为某个随机值。 如果您有一个未连接的模拟引脚,它可能会从周围环境中拾取随机噪声。 这些可能是无线电波,宇宙射线,手机的电磁干扰,荧光灯等。
例子 (Example)
randomSeed(analogRead(5)); // randomize using noise from analog pin 5
random( )
随机函数生成伪随机数。 以下是语法。
random( ) Statements Syntax
long random(max) // it generate random numbers from 0 to max
long random(min, max) // it generate random numbers from min to max
例子 (Example)
long randNumber;
void setup() {
Serial.begin(9600);
// if analog input pin 0 is unconnected, random analog
// noise will cause the call to randomSeed() to generate
// different seed numbers each time the sketch runs.
// randomSeed() will then shuffle the random function.
randomSeed(analogRead(0));
}
void loop() {
// print a random number from 0 to 299
Serial.print("random1=");
randNumber = random(300);
Serial.println(randNumber); // print a random number from 0to 299
Serial.print("random2=");
randNumber = random(10, 20);// print a random number from 10 to 19
Serial.println (randNumber);
delay(50);
}
现在让我们刷新一些基本概念的知识,比如位和字节。
Bits
一点只是一个二进制数字。
二进制系统使用两个数字,0和1。
类似于十进制数系统,其中数字的数字不具有相同的值,位的“重要性”取决于它在二进制数中的位置。 例如,十进制数666中的数字相同,但具有不同的值。
Bytes
一个字节由8位组成。
如果位是数字,则字节表示数字是合乎逻辑的。
可以对它们执行所有数学运算。
字节中的数字也不具有相同的含义。
最左边的位具有最大值,称为最高有效位(MSB)。
最右边的位具有最小值,因此称为最低有效位(LSB)。
由于八个零和一个字节的一个可以以256种不同的方式组合,因此可以用一个字节表示的最大十进制数是255(一个组合表示零)。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论