×

带有RAK3372 EVB的NET nanoframework LoRaWAN开源

消耗积分:0 | 格式:zip | 大小:0.00 MB | 2023-06-12

分享资料个

描述

早在 2022 年 8 月,我就在我的博客上发布了.NET nanoFramework RAK3172 库用法,介绍如何将RAK3172LoRaWAN-NetNF 库STM32F7 Discovery / Sparkfun Thing Plus ESP32 WROOMRAK3172 分线板一起使用

在我的.NET nanoFramework 和 RAK WisBlock 传感器 Hackster 项目中,我记录了如何获取。NET nanoFramework在RAKwireless RAK11200 wisBlock WiFi 核心模块/ RAK2305 WiFi Espressif ESP32 无线模块 上运行并读取一系列传感器。

WisBlock Core通常是物联网解决方案的处理单元,但没有任何设备可以同时运行 .NET nanoFrameworkLoRaWAN连接。

通常,WisBlock Core会运行一个使用Wisblock 无线Wisblock 传感器模块的自定义应用程序。例如,RAK3373 核心模块可以使用RAK2305 无线模块连接到无线接入点。

然后我意识到“如果RAK3372 核心模块可以控制RAK2305 无线模块,那么也许RAK2305 无线模块可以控制RAK3372 核心模块

第一步是将RAK3372 核心RAK2305 无线模块安装在RAK5005-O 基板

poYBAGSBRM-AR3cbAAkogPNaXcc476.jpg
FTDI RAK3373 RAK5005 RAK2305 测试台
 

然后使用nanoff加载.NET nanoFramework运行时

poYBAGSBRNGAY0nTAADktoSp-kw652.png
使用 nanoff 更新 RAK2305 设备。
 

RUI3串行操作模式表明RAK3172应该能够处理串行和串行 2 端口上的 AT 命令。

pYYBAGSBRNSAQSVzAAB2dwQtONU826.png
RAK3172 RUI3 串行操作模式
 

nanoFramework使用 TXD0 和 RXD0(用于闪烁和调试),因此只有 TXD1(IO17) 和 RXD1(IO16) 可用。

poYBAGSBRNiAc9HyAAINFhjGDO4425.png
RAK2305原理图
 

RAK2305 TXD1 和 RXD1 连接到 BTB40_M 连接器上的 PIN34 和 PIN33 然后将RAK2305模块插入RAK5005上的BTB40_F IO 扩展槽

pYYBAGSBRNyAU4AYAAJ61sPW5QE337.png
RAK5005 连接器原理图
 

RAK5005 TXD1 连接到 PIN33,RXD1 连接到 BTB40_F 连接器上的 PIN34 RAK5005 TXD1 连接到 PIN 33,RXD1 连接到 CPU 插槽 BTB40_F 连接器上的 PIN34(TX/RX 在此处交叉)RAK3372插入RAK5005上的 BTB40_F 插座

poYBAGSBRN-AMRk4AAHDbdN7MKM022.png
RAK3327原理图
 

RAK3372 TXD1 连接到 PIN33,RXD1 连接到 BTB40_M 连接器上的 PIN34 RAK3372 原理图中的 TXD1 和 RXD1 标签不正确)。

然后我使用 BreakOutSerial 应用程序来确认连接。

public static void Main()
{
   Debug.WriteLine("devMobile.IoT.LoRaWAN.nanoFramework.RAK3172 BreakoutSerial starting");

   try
   {
      // set GPIO functions for COM2 (this is UART1 on ESP32)
      Configuration.SetPinFunction(Gpio.IO21, DeviceFunction.COM2_TX);
      Configuration.SetPinFunction(Gpio.IO19, DeviceFunction.COM2_RX);

      Debug.Write("Ports:");
      foreach (string port in SerialPort.GetPortNames())
      {
         Debug.Write($" {port}");
				}
	 Debug.WriteLine("");

	using (_SerialPort = new SerialPort(SerialPortId))
	{
	   // set parameters
	   _SerialPort.BaudRate = 115200;
	   _SerialPort.Parity = Parity.None;
	   _SerialPort.DataBits = 8;
	   _SerialPort.StopBits = StopBits.One;
	   _SerialPort.Handshake = Handshake.None;
	   _SerialPort.NewLine = "\r\n";
	   _SerialPort.ReadTimeout = 1000;

	   //_SerialPort.WatchChar = '\n'; // May 2022 WatchChar event didn't fire github issue https://github.com/nanoframework/Home/issues/1035

	   _SerialPort.DataReceived += SerialDevice_DataReceived;
	   
	   _SerialPort.Open();

	   _SerialPort.WatchChar = '\n';

	   _SerialPort.ReadExisting(); // Running at 115K2 this was necessary

	   for (int i = 0; i < 5; i++)
	   {
	      string atCommand;
	      atCommand = "AT+VER=?";
	      //atCommand = "AT+SN=?"; // Empty response?
	      //atCommand = "AT+HWMODEL=?";
	      //atCommand = "AT+HWID=?";
	      //atCommand = "AT+DEVEUI=?";
   	      //atCommand = "AT+APPEUI=?";
	      //atCommand = "AT+APPKEY=?";
	      //atCommand = "ATR";
	      //atCommand = "AT+SLEEP=4000";
	      //atCommand = "AT+ATM";
	      //atCommand = "AT+NWM=1";
	      //atCommand = "AT?";
	      //atCommand = "+++";
	      Debug.WriteLine("");
	      Debug.WriteLine($"{DateTime.UtcNow:hh:mm:ss} {i} TX:{atCommand} bytes:{atCommand.Length}--------------------------------");
	      _SerialPort.WriteLine(atCommand);
	   
	      Thread.Sleep(5000);
	   }
	}

	Debug.WriteLine("Done");
      }
      catch (Exception ex)
      {
         Debug.WriteLine(ex.Message);
      }
   }


   private static void SerialDevice_DataReceived(object sender, SerialDataReceivedEventArgs e)
   {
      SerialPort serialPort = (SerialPort)sender;

      switch (e.EventType)
      {
         case SerialData.Chars:
            break;

         case SerialData.WatchChar:
            string response = serialPort.ReadExisting();
            //Debug.Write($"{DateTime.UtcNow:hh:mm:ss} RX:{response} bytes:{response.Length}");
            Debug.Write(response);
            break;
         default:
            Debug.Assert(false, $"e.EventType {e.EventType} unknown");
            break;
         }
      }
   }
}
poYBAGSBROOAJT37AAC4T42ROjQ260.png
BreakoutSerial Visual Studio 2022 调试输出
 

然后,我RAK3172LoRaWANDeviceClient应用程序config.cs中配置了DevEUI、JoinEUI 和 AppKey

namespace devMobile.IoT.LoRaWAN
{
   public class Config
   {
#if DEVEUI_SET
      public const string devEui = "...";
#endif
#if OTAA
      public const string JoinEui = "...";
      public const string AppKey = "..."
      //public const string AppKey = "03C06FBFC2F3B396DE07ECF09404F6FE";
#endif
#if ABP
      public const string DevAddress = "...";
      public const string NwksKey = "...";
      public const string AppsKey = "...";
#endif
   }
}

RAK3172LoRaWANDeviceClient支持的功能配置了一系列编译时指令。

//#define ST_STM32F769I_DISCOVERY      // nanoff --target ST_STM32F769I_DISCOVERY --update 
//#define  SPARKFUN_ESP32_THING_PLUS  // nanoff --platform esp32 --serialport COM4 --update
#define RAK_WISBLOCK_RAK2305 // nanoff --update --platform esp32 --serialport COM4
//#define DEVICE_DEVEUI_SET
//#define FACTORY_RESET
//#define PAYLOAD_BCD
#define PAYLOAD_BYTES
//#define OTAA
//#define ABP
//#define CONFIRMED
//#define UNCONFIRMED
//#define REGION_SET
//#define ADR_SET
//#define SLEEP

SendMessageTimer 在网络加入成功时启动。每次调用 SendMessageTimerCallback 时,RAK3172LoRaWANDeviceClient应用程序都会发送一条消息。

pYYBAGSBROaAGYp_AAC89a50y00702.png
RAK3712LoRaWANDeviceClient Visual Studio 调试器输出
 
poYBAGSBROqAG-f2AAE-1RDgtmk626.png
RAK3712LoRaWANDeviceClient 物联网设备“实时数据”选项卡
 

执行摘要

在花了一些时间查看原理图后,运行.NET nanoFramwork 的RAK3372 Wisblock BaseRAK2305 / RAK19007组合工作正常。RAK5005及其内置太阳能电池充电(其他基本模块也具有此功能)和附加的WisBlock 模块将是“概念验证” LoRaWAN项目的良好平台。

附加物

我不确定运行默认软件的RAK4361 核心模块是否可以工作。

pYYBAGSBROyAeOj6AAB7nscyDG0902.png
RAK4631 RUI3 串行操作模式
 

RAK4361 中,RUI3 串行操作模式文档 AT 命令将仅在串行(USB 端口)Serial1(TDX0/RXD0) 上处理。


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

评论(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:'带有RAK3372 EVB的NET nanoframework LoRaWAN开源',//标题 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);