×

屋顶绿化监测开源分享

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

分享资料个

描述

作为我们在 Polytech Sorbonne 学习的一部分,这是一个嵌入式系统项目。我们设计了一个测量屋顶植物各种参数的系统,然后将其应用于我们工程学院农业食品部门太阳能电池板效率与植物之间关系的研究。

我们的设备放置在太阳能电池板上方。项目的功能并不复杂。它使用传感器测量土壤和空气的温度和湿度,以及阳光的强度和光谱。结果将在 Ubidot 平台上可视化。

我们花了将近三个月的时间(每周工作8小时)来实现,包括传感器编程、Sigfox通信模块编程、PCB板设计、电源模块设计、PCB板焊接和测试、功耗优化等阶段。

详细功能

监测包括管理:

  • 空气/土壤水分
  • 空气/土壤温度
  • 亮度(甚至 RGB 光线)

使用微控制器和传感器

附加的功能:

1.准备好你要用的所有材料,检查针脚并制作一张地图,你将根据它连接电线。选择取决于您想要实现的功能以及您想要放置传感器的位置。或者你可以按照我们设计的地图走。

先决条件

有知识

  • 微控制器编程(C++语言)
  • 如何阅读数据表并提取最重要的数据
  • I2C、UART 协议

如何使用 Sigfox 发送数据:

  • 指令
  • 每天可以发送多少条消息?

项目信息

  • 状态:已完成
  • 难度:中级(计算机科学的先决条件)
  • 预计时间:3个月(一队4人)

要遵循的步骤

1.准备好你要用的所有材料,检查针脚并制作一张地图,你将根据它连接电线。选择取决于您想要实现的功能以及您想要放置传感器的位置。或者你可以按照我们设计的地图走。(在附件中找到)

poYBAGOSyzmAZ5NfAAI4YGXcedI435.png
 

2.对开发板STM32 NUCLEO-L432KC进行编程

  • 从传感器中检索数据
  • 使用 Sigfox 转换要发送的数据
  • 创建一个类以控制 Sigfox 模型
  • 配置开发板在Sigfox模块不发送报文时进入深度睡眠模式,以降低功耗。

3.数据可视化

  • 激活您的 Sigfox 帐户(您可以按照官方文档中的步骤操作:Sigfox Activate | Sigfox Resources)
  • 在您喜欢的平台上创建一个帐户(我们在这一步中使用了 Ubidots)
  • 在数据库中保存数据
  • 创建仪表板并显示数据
  • 如果您有多个 Sigfox 模块,请创建一个下拉列表以允许最终用户过滤要显示的数据

如果您有任何问题,我们在这里有一些关于如何链接 Sigfox 和 Ubidots 的详细解释。

pYYBAGOSyzyAfYcGAAEaOxsb390055.png
 

4. 如果您想创建该项目的 PCB,我们在附件中提供了示例。我们的示例中有两块 PCB,一块用于供电,另一块用于主要组件。

5.功耗的改善。

除了为STM32 NUCLEO-L432KC增加deepsleep模式外,还可以增加一个三极管,在传感器不工作时切断所有传感器的电压供应。我们将三极管的基极引脚连接到 NUCLEO 的引脚 D9,它控制所有传感器的电压供应。

就我们系统的消耗而言:

测量和发送数据:70mA

睡眠模式下的传感器和 Sigfox:10mA

编程

我们的代码以简洁的方式基于语言 C++。

我们使用mbed上共享的传感器的库函数,使用这些库,我们编写了文件。为了通过 Sigfox 发送消息,我们还编写了一个库 Sigfox,包括连接、发送数据和休眠的方法。我们的代码在附件中。

我们使用的库可以在 Mbed 中找到。库 可以在附件中找到。

#include"DS1820.h"
#include"DHT.h"
#include "TCS34725.h"
#include "WakeUp.h"

#include "Sigfox.h"

文件中的以下函数用于读取不同类型的数据。您不需要重写这些函数,它们也可以在库中找到。

u8 readBat(){} //read the battery power
void ReadTempHumiAir(){} //read the temperature and humidity of air then save them in Temp_Air and Humi_Air
void ReadTempSol(){} //read the temperature of the soil then save it in Temp_Sol
void ReadHumiSol(){} //read the Humidity of the soil then save it in Humi_Sol
void ReadRGBC(){} //read RGB of the light and save it in r,g,b
void ReadLumi(){} //read the illumination intensity then save it in Lumierevoid ReadRGBC(){} //read RGB of the light and save it in r,g,b
void ReadRGBC(){} //read RGB of the light and save it in r,g,b

还有一个名为“Sigfox.h”的文件,其结构非常简单。以下块解释了类 Sigfox 的工作原理。

Sigfox(PinName, PinName); //The constructor of the class
bool ready();             //Check if the module Sigfox is ready for work
void send(s16 ...);       //Send all the data measured by our sensors to the cloud
void sleep();             //Enable the power save mode
void wake();              //Enable the normal mode

结果展示

完成所有这些步骤后,现在我们可以通过 Ubidots 平台观察数据。https://industrial.ubidots.com/accounts/signout/

这是数据的一个例子。

pYYBAGOSy0CAHv_MAACu3yGxUKc419.png
 

反馈

我们继续致力于这个项目,我们希望它能证明对更广泛的社区有用。如果您有任何问题,请随时在这里给我们留言。

享受!


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

评论(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:'屋顶绿化监测开源分享',//标题 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);