Uplink command to get the extended operator parameters.
The corresponding downlink command: getOperatorParametersExtended.
getOperatorParametersExtended
import * as getOperatorParametersExtended from 'jooby-codec/mtx3/commands/uplink/getOperatorParametersExtended.js';// simple responseconst bytes = [0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00];// decoded payloadconst parameters = getOperatorParametersExtended.fromBytes(bytes);console.log(parameters);// output:{ timeoutRelayOn: 1, define1: { RESET_DAY_MAX_POWER_KEY: false, RESET_MONTH_MAX_POWER_KEY: false, BLOCK_KEY_OPTOPORT: false, MAGNET_SCREEN_CONST: false, ALLOW_BROWNOUT_INDICATION: false }, timeoutRelayKey: 0, timeoutRelayAuto: 5} Copy
import * as getOperatorParametersExtended from 'jooby-codec/mtx3/commands/uplink/getOperatorParametersExtended.js';// simple responseconst bytes = [0x01, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00];// decoded payloadconst parameters = getOperatorParametersExtended.fromBytes(bytes);console.log(parameters);// output:{ timeoutRelayOn: 1, define1: { RESET_DAY_MAX_POWER_KEY: false, RESET_MONTH_MAX_POWER_KEY: false, BLOCK_KEY_OPTOPORT: false, MAGNET_SCREEN_CONST: false, ALLOW_BROWNOUT_INDICATION: false }, timeoutRelayKey: 0, timeoutRelayAuto: 5}
Command format documentation
Uplink command to get the extended operator parameters.
The corresponding downlink command:
getOperatorParametersExtended
.Example: create command instance from command body hex dump
Command format documentation