本文整理了Java中com.zsmartsystems.zigbee.zcl.ZclCommand.getCommandId()
方法的一些代码示例,展示了ZclCommand.getCommandId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZclCommand.getCommandId()
方法的具体详情如下:
包路径:com.zsmartsystems.zigbee.zcl.ZclCommand
类名称:ZclCommand
方法名:getCommandId
[英]Gets the command ID.
[中]获取命令ID。
代码示例来源:origin: openhab/org.openhab.binding.zigbee
public boolean matchesCommand(ZclCommand command) {
boolean commandIdMatches = command.getCommandId().intValue() == commandId;
boolean commandParameterMatches = commandParameterName == null || commandParameterValue == null
|| matchesParameter(command);
return commandIdMatches && commandParameterMatches;
}
代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee
zclHeader.setFrameType(zclCommand.isGenericCommand() ? ZclFrameType.ENTIRE_PROFILE_COMMAND
: ZclFrameType.CLUSTER_SPECIFIC_COMMAND);
zclHeader.setCommandId(zclCommand.getCommandId());
zclHeader.setSequenceNumber(command.getTransactionId());
zclHeader.setDirection(zclCommand.getCommandDirection());
内容来源于网络,如有侵权,请联系作者删除!