分享
一入极客深似海
英语的只认识26个字母
展开
-
arduino获取随机数
使用 randomSeed()函数来读取一个未被使用到的引脚, randomSeed(analogRead(A0)); //使用一个未被使用到的引脚使用 random()函数来生成随机数,返回 long型random()函数有两种使用使用方法random(max); //返回数类型不会 超过所填的数据random(min,max); //产生一个范围内的随机数使用示例void setup() { Serial.begin(9600); randomSeed(analog原创 2021-11-18 20:17:53 · 5842 阅读 · 0 评论 -
arduino获取数组的长度
假设,当前有这么一个数组String str[]={"ddd","ddd","dsgsd","fdsf","oooo"};使用 sizeof() 函数sizeof(str)是获取数组的总字节长度,sizeof(str[0])是获取数组中一位的字节长度。用总字节长度/一位字节长度。得出的结果就是。数组的长度。示例代码String str[5]={"ddd","ddd","dsgsd","fdsf","oooo"};int num;void setup() { Serial.b原创 2021-11-18 20:42:04 · 3541 阅读 · 0 评论 -
MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
还没写完,持续更新中。意在将DFRobotDFPlayerMini.h库中的常用函数刨析完使用此库,开篇两样#include "DFRobotDFPlayerMini.h"DFRobotDFPlayerMini myDFPlayer; //示例化对象名称MP3mini模块是使用串口通讯,我这里使用虚拟串口#include "DFRobotDFPlayerMini.h"#include <SoftwareSerial.h>#include <arduino.h>D.原创 2021-11-10 18:46:10 · 8443 阅读 · 11 评论