jooby-codec
    Preparing search index...

    Namespace setSpecialOperation

    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 representation
    console.log(bytes);
    // output:
    [100, 2, 85, 3]

    Command format documentation

    Variables

    accessLevel
    examples
    headerSize
    id
    isLoraOnly
    maxSize
    name

    Functions

    fromBytes
    toBytes