- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getProfileId()
方法的一些代码示例,展示了ZigBeeEndpoint.getProfileId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZigBeeEndpoint.getProfileId()
方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.ZigBeeEndpoint
类名称:ZigBeeEndpoint
方法名:getProfileId
[英]Gets profile ID.
[中]获取配置文件ID。
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
private void outputEndpoint(PrintStream out, ZigBeeEndpoint endpoint) {
out.println("Profile " + String.format("%04X ", endpoint.getProfileId())
+ ZigBeeProfileType.getByValue(endpoint.getProfileId()));
out.println(" : Device Type " + String.format("%04X ", endpoint.getDeviceId())
+ com.zsmartsystems.zigbee.ZigBeeDeviceType.getByValue(endpoint.getDeviceId()).toString());
for (Integer clusterId : endpoint.getInputClusterIds()) {
out.println(" -> " + ZclClusterType.getValueById(clusterId));
}
for (Integer clusterId : endpoint.getOutputClusterIds()) {
out.println(" <- " + ZclClusterType.getValueById(clusterId));
}
}
}
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
@Override
public void process(ZigBeeNetworkManager networkManager, String[] args, PrintStream out)
throws IllegalArgumentException {
if (args.length != 2) {
throw new IllegalArgumentException("Invalid number of arguments");
}
final ZigBeeEndpoint endpoint = getEndpoint(networkManager, args[1]);
ZigBeeProfileType profile = ZigBeeProfileType.getByValue(endpoint.getProfileId());
ZigBeeDeviceType device = ZigBeeDeviceType.getByValue(endpoint.getDeviceId());
out.println("IEEE Address : " + endpoint.getIeeeAddress());
out.println("Network Address : " + endpoint.getParentNode().getNetworkAddress());
out.println("Endpoint : " + endpoint.getEndpointId());
out.println("Device Profile : " + String.format("0x%04X, ", endpoint.getProfileId())
+ (profile == null ? "Unknown" : profile.toString()));
out.println("Device Type : " + String.format("0x%04X, ", endpoint.getDeviceId())
+ (device == null ? "Unknown" : device.toString()));
out.println("Device Version : " + endpoint.getDeviceVersion());
out.println("Input Clusters : (Server)");
printClusters(endpoint, true, out);
out.println("Output Clusters : (Client)");
printClusters(endpoint, false, out);
}
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
ZigBeeEndpoint endpoint = node.getEndpoint(endpointId);
out.println(String.format("%-3d %-25s %s", endpoint.getEndpointId(),
ZigBeeProfileType.getByValue(endpoint.getProfileId()),
ZigBeeDeviceType.getByValue(endpoint.getDeviceId())));
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
@Test
public void testProfileId() {
ZigBeeEndpoint endpoint = getEndpoint();
endpoint.setProfileId(0x104);
assertEquals(0x104, endpoint.getProfileId());
}
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setDeviceId()方法的一些代码示例,展示了ZigBeeEndpoint.setDevice
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setDeviceVersion()方法的一些代码示例,展示了ZigBeeEndpoint.setD
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setDao()方法的一些代码示例,展示了ZigBeeEndpoint.setDao()的具体用法。
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getProfileId()方法的一些代码示例,展示了ZigBeeEndpoint.getProfi
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getParentNode()方法的一些代码示例,展示了ZigBeeEndpoint.getPare
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getDeviceId()方法的一些代码示例,展示了ZigBeeEndpoint.getDevice
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getIeeeAddress()方法的一些代码示例,展示了ZigBeeEndpoint.getIee
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getEndpointAddress()方法的一些代码示例,展示了ZigBeeEndpoint.ge
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getOutputClusterIds()方法的一些代码示例,展示了ZigBeeEndpoint.g
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.()方法的一些代码示例,展示了ZigBeeEndpoint.()的具体用法。这些代码示例主要来源于G
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getApplication()方法的一些代码示例,展示了ZigBeeEndpoint.getApp
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setInputClusterIds()方法的一些代码示例,展示了ZigBeeEndpoint.se
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setOutputClusterIds()方法的一些代码示例,展示了ZigBeeEndpoint.s
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.addApplication()方法的一些代码示例,展示了ZigBeeEndpoint.addApp
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.setProfileId()方法的一些代码示例,展示了ZigBeeEndpoint.setProfi
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.commandReceived()方法的一些代码示例,展示了ZigBeeEndpoint.comma
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.sendTransaction()方法的一些代码示例,展示了ZigBeeEndpoint.sendT
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getInputCluster()方法的一些代码示例,展示了ZigBeeEndpoint.getIn
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getOutputCluster()方法的一些代码示例,展示了ZigBeeEndpoint.getO
本文整理了Java中com.zsmartsystems.zigbee.ZigBeeEndpoint.getEndpointId()方法的一些代码示例,展示了ZigBeeEndpoint.getEndp
我是一名优秀的程序员,十分优秀!