Downlink command to set special parameters (resetting screens of magnetic and electromagnetic influence).
Supported in MTX1 and MTX3 devices.
import * as setSpecialOperation from 'jooby-codec/mtx1/commands/downlink/setSpecialOperation.js';import * as specialOperationTypes from 'jooby-codec/mtx1/constants/specialOperationTypes.js';const parameters = { type: specialOperationTypes.RESET_INFLUENCE_SCREENS, readScreensInfo: false, resetElectroMagneticIndication: true, resetMagneticIndication: true};const bytes = setSpecialOperation.toBytes(parameters);// command binary representationconsole.log(bytes);// output:[100, 2, 85, 3] Copy
import * as setSpecialOperation from 'jooby-codec/mtx1/commands/downlink/setSpecialOperation.js';import * as specialOperationTypes from 'jooby-codec/mtx1/constants/specialOperationTypes.js';const parameters = { type: specialOperationTypes.RESET_INFLUENCE_SCREENS, readScreensInfo: false, resetElectroMagneticIndication: true, resetMagneticIndication: true};const bytes = setSpecialOperation.toBytes(parameters);// command binary representationconsole.log(bytes);// output:[100, 2, 85, 3]
Command format documentation
Downlink command to set special parameters (resetting screens of magnetic and electromagnetic influence).
Supported in MTX1 and MTX3 devices.
Example
Command format documentation