gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-16 07:57:31 25 4
gpt4 key购买 nike

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

ZigBeeEndpoint.setInputClusterIds介绍

[英]Sets input cluster IDs. This will add any new clusters in the list, and remove any that are no longer in the list.
[中]设置输入群集ID。这将在列表中添加任何新集群,并删除任何不再在列表中的集群。

代码示例

代码示例来源:origin: openhab/org.openhab.binding.zigbee

if (!staticClusters.isEmpty()) {
  logger.debug("{}: Forcing endpoint {} input clusters {}", nodeIeeeAddress, endpointId, staticClusters);
  endpoint.setInputClusterIds(staticClusters);
  modified = true;

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

endpoint.setDeviceId(simpleDescriptor.getDeviceId());
endpoint.setDeviceVersion(simpleDescriptor.getDeviceVersion());
endpoint.setInputClusterIds(simpleDescriptor.getInputClusterList());
endpoint.setOutputClusterIds(simpleDescriptor.getOutputClusterList());

代码示例来源: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());
}

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