gpt4 book ai didi

com.zsmartsystems.zigbee.zcl.ZclCluster.isClient()方法的使用及代码示例

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

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

ZclCluster.isClient介绍

[英]Defines if the remote is a client (true) or server (false) The definition of the direction is based on the remote being the server. If it is really a server, then we need to reverse direction
[中]定义远程设备是客户端(true)还是服务器(false)。方向的定义基于远程设备是服务器。如果它真的是一台服务器,那么我们需要改变方向

代码示例

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

protected Future<CommandResult> send(ZclCommand command) {
  if (isClient()) {
    command.setCommandDirection(ZclCommandDirection.SERVER_TO_CLIENT);
  }
  command.setApsSecurity(apsSecurityRequired);
  return zigbeeEndpoint.sendTransaction(command, new ZclTransactionMatcher());
}

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

@Test
public void testOutputClusterIds() {
  ZigBeeEndpoint endpoint = getEndpoint();
  List<Integer> clusterIdList = new ArrayList<Integer>();
  clusterIdList.add(ZclAlarmsCluster.CLUSTER_ID);
  clusterIdList.add(ZclBasicCluster.CLUSTER_ID);
  clusterIdList.add(ZclColorControlCluster.CLUSTER_ID);
  clusterIdList.add(ZclDoorLockCluster.CLUSTER_ID);
  clusterIdList.add(ZclLevelControlCluster.CLUSTER_ID);
  endpoint.setOutputClusterIds(clusterIdList);
  assertEquals(5, endpoint.getOutputClusterIds().size());
  assertNotNull(endpoint.getOutputCluster(ZclAlarmsCluster.CLUSTER_ID));
  assertTrue(endpoint.getOutputCluster(ZclAlarmsCluster.CLUSTER_ID).isClient());
  assertFalse(endpoint.getOutputCluster(ZclAlarmsCluster.CLUSTER_ID).isServer());
  assertNotNull(endpoint.getOutputCluster(ZclLevelControlCluster.CLUSTER_ID));
  assertTrue(endpoint.getOutputCluster(ZclLevelControlCluster.CLUSTER_ID).isClient());
  assertFalse(endpoint.getOutputCluster(ZclLevelControlCluster.CLUSTER_ID).isServer());
  clusterIdList = new ArrayList<Integer>();
  clusterIdList.add(ZclAlarmsCluster.CLUSTER_ID);
  clusterIdList.add(ZclBasicCluster.CLUSTER_ID);
  assertTrue(endpoint.getOutputCluster(ZclAlarmsCluster.CLUSTER_ID).isClient());
  assertFalse(endpoint.getOutputCluster(ZclLevelControlCluster.CLUSTER_ID).isServer());
  assertTrue(endpoint.addOutputCluster(new ZclScenesCluster(endpoint)));
  assertFalse(endpoint.addOutputCluster(new ZclScenesCluster(endpoint)));
  assertTrue(endpoint.getOutputClusterIds().contains(ZclScenesCluster.CLUSTER_ID));
  assertTrue(endpoint.getInputClusterIds().isEmpty());
  System.out.println(endpoint.toString());
}

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

@Test
public void testInputClusterIds() {
  ZigBeeEndpoint endpoint = getEndpoint();
  List<Integer> clusterIdList = new ArrayList<Integer>();
  clusterIdList.add(ZclAlarmsCluster.CLUSTER_ID);
  clusterIdList.add(ZclBasicCluster.CLUSTER_ID);
  clusterIdList.add(ZclColorControlCluster.CLUSTER_ID);
  clusterIdList.add(ZclDoorLockCluster.CLUSTER_ID);
  clusterIdList.add(ZclLevelControlCluster.CLUSTER_ID);
  endpoint.setInputClusterIds(clusterIdList);
  assertEquals(5, endpoint.getInputClusterIds().size());
  assertNotNull(endpoint.getInputCluster(ZclAlarmsCluster.CLUSTER_ID));
  assertFalse(endpoint.getInputCluster(ZclAlarmsCluster.CLUSTER_ID).isClient());
  assertTrue(endpoint.getInputCluster(ZclAlarmsCluster.CLUSTER_ID).isServer());
  assertNotNull(endpoint.getInputCluster(ZclLevelControlCluster.CLUSTER_ID));
  assertFalse(endpoint.getInputCluster(ZclLevelControlCluster.CLUSTER_ID).isClient());
  assertTrue(endpoint.getInputCluster(ZclLevelControlCluster.CLUSTER_ID).isServer());
  assertTrue(endpoint.addInputCluster(new ZclScenesCluster(endpoint)));
  assertFalse(endpoint.addInputCluster(new ZclScenesCluster(endpoint)));
  assertTrue(endpoint.getInputClusterIds().contains(ZclScenesCluster.CLUSTER_ID));
  assertTrue(endpoint.getOutputClusterIds().isEmpty());
}

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