0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

NanoBeacon™ BLE扫描器教程(第三部分)

橙群微电子 2023-06-08 10:40 次阅读

Let’s recap what we covered in the previous articles within this series:

让我们回顾一下我们在本系列的前几篇文章中所涉及的内容:

  • Requirements, installation, and setup steps for using the mobile app
  • 使用移动应用程序的要求、安装和设置步骤
  • Overview of the different sections within the app
  • 应用程序内不同部分的概述
  • Running a few test case scenarios with different advertising data types
  • 用不同的广播数据类型运行一些测试案例场景
  • A detailed look at device filters
  • 详细了解设备过滤器
  • Differences between the iOS and Android versions of the app
  • 该应用程序的iOS和Android版本之间的差异


In this particular tutorial, we will focus on one of the most unique features of our app: App Notifications (even in the background) for detecting Triggered Advertising Sets.

在这个特别的教程中,我们将专注于我们应用程序的一个最独特的功能:应用通知(甚至在后台),用于检测触发的广播集。


So, how do these work? what exactly do we mean by “Triggered”? What are the limitations of app notifications in both versions of the app (Android and iOS)?

那么,这些是如何工作的?"Triggered "到底是什么意思?在两个版本的应用程序(安卓和iOS)中,应用程序通知的限制是什么?


Triggered Advertising Sets触发式广播集


Triggered advertising sets allow the user to configure the device to send advertising packets only when certain conditions occur.

触发式广播集允许用户配置设备,使其仅在某些条件发生时发送广播包。


This can be very useful in use cases where advertising packets are only needed when one or more conditions are met, for example, the battery level going below 10% or the temperate going over 40 degrees Celsius. In this case, sending advertising data all the time regardless of these conditions (which is what is referred to as “Continuous Advertising Mode” in the NanoBeacon Config Tool) would unnecessarily increase battery consumption, so it makes sense to only send them out based on certain conditions.

这对于只有在满足一个或多个条件时才需要广播数据包的用例非常有用,例如,电池电量低于10%或温度超过40摄氏度。在这种情况下,不管这些条件如何,一直发送广播数据(这就是NanoBeacon配置工具中所说的 "连续广播模式")会不必要地增加电池消耗,所以只根据某些条件发送广播是有意义的。


Here’s a look at the various options available for this mode within the NanoBeacon Config Tool:

下面我们来看看NanoBeacon配置工具中该模式的各种可用选项:


0f45fb1a-0014-11ee-ba01-dac502259ad0.png

1、Triggered advertising event count: this defines the number of advertising events transmitted if a triggered condition is met.

1、触发的广播事件计数:这定义了在满足触发条件时传输的广播事件的数量。


2、Trigger event will reset triggered advertising event count: enabling this will reset the advertising event count set above in #1, meaning that if any of the trigger conditions are met, it will keep resetting the count and continue sending the advertising packets. Once none of the trigger conditions are met, the advertising event count will start decrementing. For example, suppose this option was enabled, and the trigger condition was a high threshold for internal temperature ≥ 25 deg C, and the temperature surpassed this threshold. In that case, it will continue sending advertising events until the temperature is below the threshold, and then it will only send the number of advertising events set in option #1.

2、触发事件将重置被触发的广播事件计数:启用这个功能将重置上面#1中设置的广播事件计数,这意味着如果满足任何一个触发条件,它将不断重置计数并继续发送广播数据包。一旦没有一个触发条件被满足,广播事件计数将开始递减。例如,假设该选项被启用,而触发条件是内部温度≥25摄氏度的高阈值,并且温度超过了这个阈值。在这种情况下,它将继续发送广播事件,直到温度低于阈值,然后它将只发送选项#1中设置的广播事件数量。


3、Single trigger, Recurring trigger, Advertise indefinitely after 1st trigger:

3、单次触发、重复触发、第1次触发后无限期广播:

  • Single Trigger: choosing this type will set the behavior to only send the advertising events upon any of the trigger conditions being met just once. If the trigger conditions are met later (during the same power cycle), no advertising events will be transmitted.

  • 单次触发:选择这种类型将设置行为,只在任何一次触发条件被满足时才发送广播事件。如果以后再满足触发条件(在同一电源周期内),将不发送广播事件。

  • Recurring Trigger: choosing this type will send out advertising events every time a trigger condition is met.

  • 循环触发:选择这种类型,每次触发条件被满足时都会发送广播事件。

  • Advertise indefinitely after 1st trigger: as the name suggests, choosing this type will send out advertising events indefinitely after any of the trigger conditions are met.

  • 第1次触发后无限期广播:顾名思义,选择这种类型将在满足任何触发条件后无限期地发送广播事件。

4、Sensor trigger source: this defines one or more sources for trigger conditions, which are set in the “Global Trigger Settings” section within the NanoBeacon Config Tool. Examples of trigger sources include VCC, Internal Temperature, ADC channels, 1-wire sensor readings, and I2C slave readings.4、传感器触发源:这定义了一个或多个触发条件的来源,在 NanoBeacon 配置工具中的 "全局触发设置 "部分设置。触发源的例子包括VCC、内部温度、ADC通道、单线传感器读数和I2C从属读数。


5、GPIO trigger source: this defines one or more sources for trigger conditions based on GPIO status. The GPIOs available are: GPIO2, GPIO3, MGPIO4, MGPIO5, MGPIO6, and MGPIO7.

5、GPIO触发源:这定义了一个或多个基于GPIO状态的触发条件源。可用的GPIO是:GPIO2, GPIO3, MGPIO4, MGPIO5, MGPIO6, 和 MGPIO7.


Keep in mind that the triggered event will occur if anyof the defined conditions are met.

请记住,如果满足任何定义的条件,触发的事件就会发生。


Triggered Advertising Sets on the Mobile App移动应用上的触发式广播集

Now that we better understand how triggered advertisements work and the different options available, we can now test them out to see what they look like and how they behave on both the Android and iOS versions of the mobile app.

现在我们更好地了解了触发式广播的工作原理和不同的选项,我们现在可以测试一下,看看它们在移动应用的安卓和iOS版本上是什么样子的,表现如何。


Referring back to the previous article, where we covered the differences between the iOS and Android versions of the app, the following is a significant difference related to notifications:

参考之前的文章,我们介绍了iOS和Android版本的应用程序之间的差异,以下是与通知有关的重大差异:

  • Android supports background notifications for all types of Triggered advertisements.

  • 安卓支持所有类型的Triggered广播的后台通知。

  • iOS only supports background notifications for Triggered iBeacon advertisements.

  • iOS只支持Triggered iBeacon广播的后台通知。

Due to this, we’ll use iBeacon as the primary test case in this tutorial.

由于这个原因,我们将使用iBeacon作为本教程的主要测试案例。


Test Case: Single Advertising Set: Triggered iBeacon

测试案例:单一广播集:触发的iBeacon

For this test case, we’ll go ahead and define one advertising set as iBeacon and configure it in Triggered mode.

在这个测试案例中,我们将继续将一个广播集定义为iBeacon,并将其配置为触发模式。


We’ll also define the following configuration parameters, all in the NanoBeacon Config Tool:

我们还将在NanoBeacon配置工具中定义以下配置参数

  • Advertising Interval = 100 ms (to make it easier to discover the advertising sets, in practice, you may want to increase the interval to reduce power consumption).

  • 广播间隔=100毫秒(为了使广播集更容易被发现,在实践中,你可能想增加间隔以减少功耗)。

  • Global Triggers: set the source for Trigger #2 to be Internal Temperature and set the High Threshold to some temperature value that’s greater than the current environment you’re in to be able to manually invoke the trigger condition. I’ve set the value to 3000 (which translates to 30 deg C). Note that the value you enter here will be multiplied by the “On-Chip Measurement Unit” defined in the “On-Chip Measurement Units” section accessible from the main screen of the Config Tool.

  • 全局触发器:将触发器#2的来源设置为内部温度,并将高阈值设置为某个温度值,该值要大于你当前所处的环境,以便能够手动调用触发条件。我把这个值设置为3000(换算成30摄氏度)。请注意,你在这里输入的值将乘以 "片上测量单位",该单位定义在 "片上测量单位 "部分,可从配置工具的主屏幕上访问。

  • Set the Advertising Data Format to iBeacon and set the UUID, Major, Minor, and Tx Power values as you’d like.

  • 将广播数据格式设置为iBeacon,并根据你的需要设置UUID、Major、Minor和Tx Power值。

  • Set the Advertising Mode to Triggered Advertising and enable “High Trigger 2” in the Sensor Trigger Source section.

  • 将广播模式设置为触发式广播,并在传感器触发源部分启用 "高触发器2"。

Once that’s all set, make sure your IN100 development board and programmer board are attached and connected to the computer running the NanoBeacon Config Tool.

一旦设置完毕,确保你的IN100开发板和编程板连接到运行NanoBeacon配置工具的计算机上。


Now you can Probe the device, select it, and then Run in RAM to run your configuration on the IN100 tag.

现在你可以探测设备,选择它,然后在RAM中运行,在IN100标签上运行你的配置。


Here are some screenshots showing the settings described above:

下面是一些显示上述设置的屏幕截图:


0f533d7a-0014-11ee-ba01-dac502259ad0.png

0f5ffcfe-0014-11ee-ba01-dac502259ad0.png

0f6d08f4-0014-11ee-ba01-dac502259ad0.png

0f818d7e-0014-11ee-ba01-dac502259ad0.png

0f8e063a-0014-11ee-ba01-dac502259ad0.png

Now we’re ready to import this configuration into the mobile app. I’ll be using the iOS version for this test.

现在我们准备把这个配置导入到移动应用中。我将使用iOS版本进行这项测试。


Using the QR Code display functionality in the Config Tool and the QR Code import functionality in the mobile app, import the configuration:

使用配置工具中的QR码显示功能和移动应用程序中的QR码导入功能,导入配置:


0f9a4b0c-0014-11ee-ba01-dac502259ad0.png

0fb1b224-0014-11ee-ba01-dac502259ad0.png

Now, navigate to the Scanner view within the mobile app and select “Only show project configuration matches” in the filter options. Give that the temperature is below the high threshold condition you set (30 degrees C in my case), you should not see any devices in the list:

现在,在移动应用程序中导航到扫描仪视图,在过滤器选项中选择 "只显示项目配置匹配"。鉴于温度低于你设置的高阈值条件(在我的例子中是30摄氏度),你应该在列表中看不到任何设备:


0fc48ee4-0014-11ee-ba01-dac502259ad0.png

As a simple way to enable the trigger condition, you can place your finger (or momentarily point a heat gun) on the IN100 chipset on the development board

作为启用触发条件的一个简单方法,你可以将手指(或用热风枪瞬间指向)放在开发板上的IN100芯片组上

0fdb51f6-0014-11ee-ba01-dac502259ad0.png

If you wait long enough for the temperature to hit the high threshold, the Scanner view in the mobile app should now show the iBeacon advertising set, along with a notification at the top of the screen:

如果你等待足够长的时间让温度达到高阈值,移动应用程序中的扫描器视图现在应该显示iBeacon广播设置,同时在屏幕顶部有一个通知:


0ff9e51c-0014-11ee-ba01-dac502259ad0.png

Even if you have the app running in the background and the phone locked, you should see the notifications come through for each Triggered advertising set being discovered:即使你的应用程序在后台运行,并且手机被锁定,你也应该看到每个被发现的触发式广播集的通知都会出现:


1011a986-0014-11ee-ba01-dac502259ad0.png

That’s all you need to do to get notifications for Triggered advertising sets from the mobile app!

这就是你需要做的,从移动应用中获得触发式广播集的通知!

Keep in mind that iBeacon is the only Advertising Data Format type that can trigger notifications on iOS devices. On Android, that limitation is not present.

请记住,iBeacon是唯一可以在iOS设备上触发通知的广播数据格式类型。在安卓上,这个限制是不存在的。


Conclusion & Summary 结论与总结In this tutorial, we covered how to discover Triggered Advertising Sets and showed how app notifications work in the mobile app.

在本教程中,我们介绍了如何发现触发式广播集,并展示了应用通知在移动应用中的作用。


In the next tutorial, we will go over another unique feature of our mobile app: Logs.

在下一个教程中,我们将介绍我们的移动应用程序的另一个独特功能:日志。


With logs, you’ll be able to view the history of discovered advertising sets and the advertising data contained in them as well as the ability to export those logs outside of the app to your computer or any other device for later analysis!

通过日志,你将能够查看已发现的广播集的历史和其中包含的广播数据,并能够将这些日志导出到你的电脑或任何其他设备,以便日后分析!

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

    关注

    12

    文章

    660

    浏览量

    59392
  • 扫描器
    +关注

    关注

    0

    文章

    164

    浏览量

    11908
收藏 人收藏

    评论

    相关推荐

    哪种二维码扫描器适合生产线应用?

    在当今的工业生产中,二维码扫描器扮演着至关重要的角色,它能够快速、准确地采集数据,提高生产效率和管理水平。然而,面对众多的二维码扫描器产品,选择适合生产线应用的并非易事。首先,我们需要考虑生产线
    的头像 发表于 12-19 16:43 80次阅读
    哪种二维码<b class='flag-5'>扫描器</b>适合生产线应用?

    红外、光感双重触发的条码扫描器,用于生产线上

    随着工业自动化的不断发展,生产线上的效率与准确性成为了企业追求的目标。红外、光感双重触发的条码扫描器作为一种先进的自动识别技术,正逐渐在生产线上发挥着重要作用。本文将详细介绍这种条码扫描器的工作原理
    的头像 发表于 12-17 16:02 81次阅读
    红外、光感双重触发的条码<b class='flag-5'>扫描器</b>,用于生产线上

    固定式扫描器哪款好?盘点高性价比型号推荐,打造高效扫码体验

    在现代企业中,固定式扫描器已成为一种不可或缺的工具。无论是在零售、物流、仓储还是生产线,固定式扫描器都能有效提升工作效率与准确性。那么,市场上众多型号中,哪款固定式扫描器更具性价比呢?本文将从
    的头像 发表于 12-12 14:56 119次阅读
    固定式<b class='flag-5'>扫描器</b>哪款好?盘点高性价比型号推荐,打造高效扫码体验

    工业固定式扫描器怎样用?固定式工业条码扫描器解决方案

    在现代制造业和物流领域,条码扫描技术已经成为提高效率、减少错误的重要工具。工业固定式扫描器作为其中一种高效的解决方案,能够在生产线、仓储和物流管理中发挥关键作用。本文将探讨工业固定式条码扫描器
    的头像 发表于 12-05 15:29 148次阅读
    工业固定式<b class='flag-5'>扫描器</b>怎样用?固定式工业条码<b class='flag-5'>扫描器</b>解决方案

    嵌入式条码扫描器的几种扫描模式

    嵌入式条码扫描器扫描模式是指其在识别条码时的工作模式,这些模式会影响到扫描器的使用效果和适用场景。以下是几种常见的嵌入式条码扫描器扫描
    的头像 发表于 11-19 16:27 178次阅读
    嵌入式条码<b class='flag-5'>扫描器</b>的几种<b class='flag-5'>扫描</b>模式

    如何设置条形码扫描器模块,扫码常见技术问题的解决

    随着现代商业和工业的快速发展,条形码扫描器模块已经成为日常工作中不可或缺的一部分。然而,对于许多用户来说,如何正确地设置这些设备仍然是一个挑战。为了帮助大家解决这一问题,深圳远景达(RAKINDA
    的头像 发表于 11-11 15:38 195次阅读
    如何设置条形码<b class='flag-5'>扫描器</b>模块,扫码<b class='flag-5'>器</b>常见技术问题的解决

    Air780EP硬件设计原理解析(第三部分

    ​ 接下来,我们继续学习第三部分。 四、射频接口 天线接口管脚定义如下: 表格 14:RF_ANT 管脚定义 ​ 4.1 射频参考电路 ​ 注意: 连接到模块RF天线焊盘的RF走线必须使用微带线或者
    的头像 发表于 11-06 15:07 225次阅读
    Air780EP硬件设计原理解析(<b class='flag-5'>第三部分</b>)

    实际的正弦波震荡电路主要由哪三部分组成

    实际的正弦波振荡电路主要由以下三部分组成,尽管有时在更详细的描述中可能会提及四部分(包括稳幅环节),但以下三部分是构成正弦波振荡电路的核心: 放大电路 : 放大电路是振荡电路的核心部分
    的头像 发表于 10-09 16:59 454次阅读

    数字芯片设计验证经验分享(第三部分):将ASIC IP核移植到FPGA上——如何确保性能与时序以完成充满挑战的

    本篇文章是SmartDV数字芯片设计经验分享系列文章的第三篇,将继续分享第五、第六主题,包括确保在FPGA上实现所需的性能和时钟两个方面的考量因素。
    的头像 发表于 08-26 14:31 1847次阅读
    数字芯片设计验证经验分享(<b class='flag-5'>第三部分</b>):将ASIC IP核移植到FPGA上——如何确保性能与时序以完成充满挑战的

    学习hypervisor嵌入式产品安全设计

    、PRTOS的配套工具等内容。第三部分(第13~15章)介绍嵌入式Hypervisor的高级应用和未来规划,涵盖μC/OS-II与Linux内核的虚拟化过程,以及PRTOS社区的愿景等内容。
    发表于 08-25 09:11

    什么是固定式条码扫描器?固定式扫描器怎么选?

    1.产品特性固定式条码扫描器以其高度的可靠性而闻名。这种设备的设计旨在提供无与伦比的性能,无论是在高速扫描还是长时间持续工作的环境下。其多种扫描模式使其能够适应各种不同的应用环境,无论是需要快速
    的头像 发表于 05-23 14:47 539次阅读
    什么是固定式条码<b class='flag-5'>扫描器</b>?固定式<b class='flag-5'>扫描器</b>怎么选?

    嵌入式二维码读头 嵌入式扫描器

    模组扫描器
    深圳市远景达物联网技术有限公司
    发布于 :2024年05月10日 09:47:48

    工业二维码扫描器 工业扫码价格

    模组扫描器
    深圳市远景达物联网技术有限公司
    发布于 :2024年05月10日 09:43:03

    工业二维码扫描器 工业RFID工业读码

    模块扫描器
    深圳市远景达物联网技术有限公司
    发布于 :2024年05月08日 13:56:40

    第三部:信号、电路与系统新说课程启动

    出合理的系统,者缺一不可。 但是,无论是课堂、上还是工作中,甚至是书籍里,并没有相关的内容,导致同学们难以入门 模拟电路,因此看海亲自创作了 《运放秘籍》第三部:信号电路与系统新说! 计划目录如下:   第一章信号基
    的头像 发表于 04-07 08:41 573次阅读
    <b class='flag-5'>第三部</b>:信号、电路与系统新说课程启动