记录 Zigbee 网络统计
是否有任何 zigbee 集群(或其他 zigbee 方法)可供我们用于网络统计?
我需要在协调器内记录 zigbee 网络的所有链路质量/模式和信号强度。
Is there any zigbee cluster (or others zigbee methods) that we can use to for network statistic?
I will need to log inside the coordinator all the link quality/pattern and the signals strength of the zigbee network.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ZDP 中的 Mgmt_Lqi_req(如果您的堆栈支持)并从所有 FFD 设备收集数据。正如您在规范中看到的,响应包含每个 1 跳邻居的 LQI 值。
You may use the
Mgmt_Lqi_req
from the ZDP (if your stack supports this) and collect the data from all FFD devices. As you can see in the Specification the response contains the LQI value for each 1 hop neighbor.另一种选择是使用 Freakduino 来 嗅探 802.15.4 流量,以便稍后使用wireshark进行分析。
目前,Freakduino 只有 2.4GHz 版本可用,尽管 900MHz 版本正在开发中,因此只能嗅探 2.4GHz 网络。
Another option is to use the Freakduino to sniff 802.15.4 traffic for later analysis with wireshark.
At this moment, only the 2.4GHz version of the Freakduino is available, though a 900MHz version is in progress, so only 2.4GHz networks can be sniffed.