Uplink command to get the meter displays sorting order.
The corresponding downlink command: getDisplayParam.
getDisplayParam
import * as getDisplayParam from 'jooby-codec/mtx1/commands/uplink/getDisplayParam.js';// mode with orderconst bytes = [0x00, 0x04, 0x05, 0x06, 0x07];// decoded payloadconst parameters = getDisplayParam.fromBytes(bytes);console.log(parameters);// output:{ displayMode: displayModes.MAIN, order: [4, 5, 6, 7]} Copy
import * as getDisplayParam from 'jooby-codec/mtx1/commands/uplink/getDisplayParam.js';// mode with orderconst bytes = [0x00, 0x04, 0x05, 0x06, 0x07];// decoded payloadconst parameters = getDisplayParam.fromBytes(bytes);console.log(parameters);// output:{ displayMode: displayModes.MAIN, order: [4, 5, 6, 7]}
Command format documentation
Uplink command to get the meter displays sorting order.
The corresponding downlink command:
getDisplayParam
.Example: create command instance from command body hex dump
Command format documentation