×

查找您的WinIoT设备

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

李雪

分享资料个

描述

在 Raspberry Pi 上为Windows 10 IoT Core开发应用程序,您很快就会熟悉安装在开发机器上的“ Windows IoT Core Watcher ”以及 Raspberry Pi 映像的 ISO:

poYBAGOiYHiAP99fAABDEQpopbg913.jpg
Microsoft 的 Windows IoT Core Watcher
 

我在想如果我自己的代码中有这个功能会很好,所以我使用Wireshark试图找出幕后的魔法。

事实证明,Raspberry Pi(或者更确切地说是 Windows 10 IoT 核心版) 每五秒(大约)广播一个 150 字节的大UDP 包,其中包含观察程序应用程序提供的信息。

这是我的设备发送的字节数组的内容(其中 MAC 地址字节的中间部分用 XX 消隐)

pYYBAGOiYHuASMQXAABjc-KyXJY708.jpg
我的设备正在广播的 150 个字节
 

不难看出这些字节是 UTF-16文本字符串,这意味着该包实际上包含 75 个 Unicode 字符。

由于只存在 ASCII 字符(实际上只有英文字母、常规数字和几个标点符号),因此实际上每隔一个字节都未使用。(只有当你设法给你的设备一个非英文字符的名称时,它们才会被使用。)

将字节解码为 UTF-16 字符,您将得到:

pYYBAGOiYH2AMzdZAABksoPA5P4548.jpg
解码为 75 个 UTF-16 字符的字节
 

 

请注意,上面背景较浅的空单元格包含二进制零,因此完全是空的(即,甚至没有空格字符——完全空白,正如您可以从字节数组中看出的那样)。

无论如何,我将其包装到 C# 中的一个库中,以便在其他项目中进行简单集成。

例如,这是一个常规 Windows 控制台应用程序的方法,它侦听在网络上找到的设备:Main

using System;
using Laserbrain.WinIoTCoreListener.Lib;

namespace Laserbrain.WinIoTCoreListener.ConsoleExample
{
  internal static class Program
  {
    private static void Main()
    {
      using (IWinIotCoreListener winIotCoreListener = WinIotCoreListenerFactory
         .Create())
      {

        winIotCoreListener.OnDeviceInfoUpdated += (s, e) =>

        {

          Console.WriteLine(e.UpdateStatus + ": " + e.DeviceInfo);

        };


        Console.WriteLine("Up'n'running.");

        Console.WriteLine("Press SPACE to list devices!");

        Console.WriteLine("Press ESCAPE to exit!");


        while (true)

        {

          switch (Console.ReadKey(true).Key)

          {

            case ConsoleKey.Spacebar:

              Console.WriteLine("-------------------------");

              foreach (DeviceInfo deviceInfo in winIotCoreListener.DeviceInfos)

              {

                Console.WriteLine("* " + deviceInfo);

              }

              Console.WriteLine("-------------------------");

              break;


            case ConsoleKey.Escape:

              return;

          }

        }

      }

    }

  }

}

怎么运行的

IWinIotCoreListener通过调用Createstatic 的方法获取 an WinIotCoreListenerFactory只要您不处置提供给您的侦听器,它就会继续触发该OnDeviceInfoUpdated事件。每次发现新设备、现有设备更改属性或设备停止广播其数据包时都会触发此事件UpdateStatus事件 args的属性告诉您更改的类型(枚举表示Found,UpdatedLost)。事件 args 的属性包含在广播包中收到的所有属性:MAC地址——以字符串格式 ( ) 和字节数组 ( )。DeviceInfoMachineNameIpAddressMacAddressStringMacAddressBytes

您还可以随时从DeviceInfos侦听器接口的属性中获取当前设备列表。

在侦听器上调用该Dispose方法将使其停止接收广播并释放其所有资源。

获取库

您可以通过下载NuGet 包来获取该库,或者,如果您愿意,您可以从GitHub获取完整的源代码

享受!:-)


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

评论(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.lene-v.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:'查找您的WinIoT设备',//标题 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.lene-v.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);