Uplink command to get vector data from device.
The corresponding downlink command: getBv.
getBv
Supported in MTX1 and MTX3 devices.
import * as getBv from 'jooby-codec/mtx1/commands/uplink/getBv.js';const bytes = [0x10, 0x09, 0x15, 0x00, 0x00, 0x09];// decoded payloadconst parameters = getBv.fromBytes(bytes);console.log(parameters);// output:{ vector: [16, 9, 21, 0, 0, 9]} Copy
import * as getBv from 'jooby-codec/mtx1/commands/uplink/getBv.js';const bytes = [0x10, 0x09, 0x15, 0x00, 0x00, 0x09];// decoded payloadconst parameters = getBv.fromBytes(bytes);console.log(parameters);// output:{ vector: [16, 9, 21, 0, 0, 9]}
Uplink command to get vector data from device.
The corresponding downlink command:
getBv.Supported in MTX1 and MTX3 devices.
Example: create command instance from command body hex dump