gpt4 book ai didi

com.zsmartsystems.zigbee.ZigBeeNode.permitJoin()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-15 21:07:31 26 4
gpt4 key购买 nike

本文整理了Java中com.zsmartsystems.zigbee.ZigBeeNode.permitJoin()方法的一些代码示例,展示了ZigBeeNode.permitJoin()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZigBeeNode.permitJoin()方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.ZigBeeNode
类名称:ZigBeeNode
方法名:permitJoin

ZigBeeNode.permitJoin介绍

[英]Enables or disables nodes to join to this node.

Nodes can only join the network when joining is enabled. It is not advised to leave joining enabled permanently since it allows nodes to join the network without the installer knowing.
[中]启用或禁用节点以加入此节点。
节点只能在启用加入时加入网络。不建议永久启用加入,因为它允许节点在安装程序不知道的情况下加入网络。

代码示例

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

/**
 * Enables or disables nodes to join to this node.
 * <p>
 * Nodes can only join the network when joining is enabled. It is not advised to leave joining enabled permanently
 * since it allows nodes to join the network without the installer knowing.
 *
 * @param enable if true joining is enabled, otherwise it is disabled
 */
public void permitJoin(final boolean enable) {
  if (enable) {
    permitJoin(0xFF);
  } else {
    permitJoin(0);
  }
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

node.permitJoin(join);
if (join != 0) {
  out.println("Permit join enable node " + node.getNetworkAddress() + " success.");

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com