Uplink command to write the block of the new image to the device. This command is part of update procedure.
import * as updateImageWrite from 'jooby-codec/obis-observer/commands/uplink/updateImageWrite.js';// response to updateImageWrite downlink commandconst bytes = [0x21];// decoded payloadconst parameters = updateImageWrite.fromBytes(bytes);console.log(parameters);// output:{ requestId: 33} Copy
import * as updateImageWrite from 'jooby-codec/obis-observer/commands/uplink/updateImageWrite.js';// response to updateImageWrite downlink commandconst bytes = [0x21];// decoded payloadconst parameters = updateImageWrite.fromBytes(bytes);console.log(parameters);// output:{ requestId: 33}
Command format documentation
Uplink command to write the block of the new image to the device. This command is part of update procedure.
Example: create command instance from command body hex dump
Command format documentation