Uplink command to verify the update image on the device. This command is part of update procedure.
import * as updateImageVerify from 'jooby-codec/obis-observer/commands/uplink/updateImageVerify.js';// response to updateImageVerify downlink commandconst bytes = [0x20, 0x01];// decoded payloadconst parameters = updateImageVerify.fromBytes(bytes);console.log(parameters);// output:{ requestId: 32, isImageValid: true} Copy
import * as updateImageVerify from 'jooby-codec/obis-observer/commands/uplink/updateImageVerify.js';// response to updateImageVerify downlink commandconst bytes = [0x20, 0x01];// decoded payloadconst parameters = updateImageVerify.fromBytes(bytes);console.log(parameters);// output:{ requestId: 32, isImageValid: true}
Command format documentation
Uplink command to verify the update image on the device. This command is part of update procedure.
Example: create command instance from command body hex dump
Command format documentation