作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setInputClusterIds()
方法的一些代码示例,展示了ZigBeeEndpoint.setInputClusterIds()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZigBeeEndpoint.setInputClusterIds()
方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.ZigBeeEndpoint
类名称: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());
}
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setInputClusterIds()方法的一些代码示例,展示了ZigBeeEndpoint.se
我是一名优秀的程序员,十分优秀!