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