com.zsmartsystems.zigbee.app.otaserver.ZclOtaUpgradeServer.setFirmware()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(111)

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

ZclOtaUpgradeServer.setFirmware介绍

[英]Sets the firmware file for this node and send a notification to the device.

The file must conform to the standard file format containing the OTA Header, upgrade image, signer certificate, signature.
[中]设置此节点的固件文件,并向设备发送通知。
文件必须符合标准文件格式,包括OTA头、升级图像、签名者证书、签名。

代码示例

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

print("OTA File: " + otaFile, out);
otaServer.setFirmware(otaFile);

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

otaServer.setFirmware(otaFile);

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

server.setFirmware(otaFile);

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

Mockito.when(otaFile.getImageType()).thenReturn(987);
server.setFirmware(otaFile);
assertTrue(otaStatusCapture.contains(ZigBeeOtaServerStatus.OTA_WAITING));

相关文章