×

带SD卡和Arduino的数据采集系统

消耗积分:0 | 格式:zip | 大小:0.23 MB | 2022-12-16

欲望都市

分享资料个

描述

介绍

在一些项目中,有必要监测照明水平、温度、环境 pH 值、湿度和其他数量等变量。

在这个过程中,经常需要在空间/环境的不同点监测一定数量的样本。我们可以举例说明房间的照明。

根据灯具的布局,房间内某些地方的照明可能会有所不同。所以我们可以有几个亮度值。

考虑到这一点,需要开发一个系统,能够收集数据并将其存储在存储卡上。其目的是在每个分析点执行多个样本并将数据存储在SD 卡上

为此,我们将使用ArduinoSD 卡来获取数据并存储在存储卡中。

现在,我们将介绍整个项目结构。

该项目

通过图 1 所示的威廉希尔官方网站 ,可以看到用于构建项目的所有设备。

 
pYYBAGOX2baASvXHAAEwClRmwR0669.png
图 1 - 数据采集系统威廉希尔官方网站
 

通过威廉希尔官方网站 ,我们使用了三个LED 每个LED代表系统的特定状态。下文将根据每个LED呈现每个功能

  • 红色 LED:用于指示内存SD 卡及其连接存在问题;
  • 绿色 LED:用于指示数据采集过程完成;
  • 黄色 LED:用于指示数据收集过程。

该系统的工作非常简单!在进行无效设置之前,系统会初始化SD 卡,如果未连接,系统将激活红色LED以指示设备中的SD 卡故障用户需要连接 SD 卡并重置系统。红色 LED 如图 2 所示。

 
pYYBAGOX2fqAB-9KAAw3mxAZYfY295.jpg
图 2 - 未连接卡时红色 LED 发出信号。
 

SD卡验证通过后,系统会进行初始化,一直按下按钮,系统会采集模拟A0引脚的10个值并存储在SD卡中。

此时,黄色LED将向用户发出系统正在收集数据的信息,如图 3 所示。

 
poYBAGOX2jCASWQkAAxfFJ2frUU052.jpg
图 3 - 绿色 LED 表示收集数据过程的开始。
 

收集数据后,黄色LED将关闭,绿色 LED 将激活以指示过程完成,如图 4 所示。

 
poYBAGOYs_GAWVoUAAxgp84A1cA536.jpg
图 4 - 绿色 LED 表示收集数据过程结束。
 

此时,系统等待关闭或用户再次按下按钮,将存储十个以上的值。

下文将介绍用于创建此项目的所有代码。

编程的逻辑

下面给出了所有代码,但将解释代码的每个部分。在第一部分,包括所有库,项目中使用的所有引脚将定义并创建项目的所有变量。

#include 
#include 
  
File myFile;
  
#define RedLED 6
#define GreenLED 7
#define YellowLED 8
#define button 9
#define AnalogPin A0
  
int pinoSS = 10; // Pin 53 para Mega / Pin 10 para UNO
  
unsigned long int tempo_atual = 0; //Variable used to store the current time of code execution
unsigned long ultimo_tempo = 0; //Variable used to store the last value stored in the variable tempo_atual
  
int DigitalValue = 0;
  
byte samples = 0, value = 0; //Sample is a variable to count until 10 and value is used count the number of times that user store 10 samples
bool ButtonControl = 0, control = 0;

在设置功能中,所有使用的引脚都根据每个连接设备的功能配置为输出和输入。此后,系统将尝试初始化SD 卡如果出现任何问题,红色LED将被激活。

void setup()
{ 
   Serial.begin(9600); // Define BaundRate
  
   pinMode(RedLED, OUTPUT);
   pinMode(GreenLED, OUTPUT);
   pinMode(YellowLED, OUTPUT);
  
   pinMode(pinoSS, OUTPUT); // Pin pinoSS like a output
  
 if (SD.begin()) 
 { // Inicializa o SD Card
 Serial.println("SD Card pronto para uso."); // Imprime na tela
 } 
   else 
 {
 Serial.println("Falha na inicialização do SD Card.");
 digitalWrite(RedLED, HIGH);
 return;
 }
  
}

因此,在循环功能中,将读取按钮的引脚。如果按下按钮,则第一个条件为真。

if(pino == 1 && control == 0 && ButtonControl == 0)

将打开文本文件 silicioslab.txt。并且会打印出消息“Sample:”,后面跟着值,表示十个样本的读数序列数。

在第一个条件下观察变量 ButtonControl 将收到值 1。该变量将用于使系统进入第二个条件。

if((ButtonControl == 1) && (tempo_atual - ultimo_tempo >= 1000) && samples < 10 && control == 1)

第二个条件将被执行,数字值将被读取并保存在SD 卡上它将被读取 10 个值。

当读数值等于 10 时,第二个条件为假。

此时,第三个条件为真,绿色LED将被激活,文件将被关闭。

void loop()
{
           
          bool pino = digitalRead(button);
         
         //Condicao para detectar quando o botao e pressionado
         if(pino == 1 && control == 0 && ButtonControl == 0)
         {
             myFile = SD.open("silicioslab.txt", FILE_WRITE); // Create/Open File the txt
             delay(500);
             ButtonControl = 1;
             value++;
             myFile.print("sample: ");
             myFile.println(value); 
             samples = 0;
         }
  
           tempo_atual = millis();
  
         if((ButtonControl == 1) && (tempo_atual - ultimo_tempo >= 1000) && samples < 10 && control == 1)
         {
           DigitalValue = analogRead(AnalogPin);
           myFile.println(DigitalValue);
           control = 0;
           ultimo_tempo = tempo_atual;//Store the actual time
           samples++;
           digitalWrite(YellowLED, HIGH);
         }
  
         if(samples >= 10)
         {
           digitalWrite(YellowLED, LOW);
           myFile.close();
           ButtonControl = 0;
           digitalWrite(GreenLED, HIGH);
         }
  
         control = control ^ 1;
}

此后,系统等待用户再次按下按钮。如果该按钮被按下,将再次进行新的块经常读取。

因此,该系统简单,可以在多个项目中实施,用于监测和收集数据进行分析。

我们在 Hackster 上发表的最后一篇文章

在上一篇文章中,我们介绍了如何在代码执行期间实时检测DS18B20 温度传感器中的故障。看图5的结果,通过以下链接访问:访问上一篇

 
pYYBAGOX2bCAa08yAAETulN7Ecw25.jpeg
图 5 - Sensor 上的故障检测系统。
 

致谢

感谢PCBWay支持我们的 YouTube 频道并生产和组装质量更好的 PCB。

Silícios 实验室感谢UTSOURCE提供电子元件。


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'带SD卡和Arduino的数据采集系统',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);