Uplink command to get the shutdown thresholds for negative active power (A-).
A-
The corresponding downlink command: getOperatorParametersExtended3.
getOperatorParametersExtended3
Supported in MTX1 and MTX3 (since 26.05.21.0.0.5) devices.
26.05.21.0.0.5
import * as getOperatorParametersExtended3 from 'jooby-codec/mtx1/commands/uplink/getOperatorParametersExtended3.js';// simple responseconst bytes = [0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x28];// decoded payloadconst parameters = getOperatorParametersExtended3.fromBytes(bytes);console.log(parameters);// output:{ pmaxMinusThreshold0: 100, pmaxMinusThreshold1: 200, pmaxMinusThreshold2: 300, pmaxMinusThreshold3: 400, relaySet: { RELAY_OFF_LIMIT_P_MINUS_T1: true, RELAY_OFF_LIMIT_P_MINUS_T2: false, RELAY_OFF_LIMIT_P_MINUS_T3: true, RELAY_OFF_LIMIT_P_MINUS_T4: false }} Copy
import * as getOperatorParametersExtended3 from 'jooby-codec/mtx1/commands/uplink/getOperatorParametersExtended3.js';// simple responseconst bytes = [0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x28];// decoded payloadconst parameters = getOperatorParametersExtended3.fromBytes(bytes);console.log(parameters);// output:{ pmaxMinusThreshold0: 100, pmaxMinusThreshold1: 200, pmaxMinusThreshold2: 300, pmaxMinusThreshold3: 400, relaySet: { RELAY_OFF_LIMIT_P_MINUS_T1: true, RELAY_OFF_LIMIT_P_MINUS_T2: false, RELAY_OFF_LIMIT_P_MINUS_T3: true, RELAY_OFF_LIMIT_P_MINUS_T4: false }}
Command format documentation
Uplink command to get the shutdown thresholds for negative active power (
A-
).The corresponding downlink command:
getOperatorParametersExtended3
.Supported in MTX1 and MTX3 (since
26.05.21.0.0.5
) devices.Example: create command instance from command body hex dump
Command format documentation