jooby-codec
    Preparing search index...

    Uplink command to verify the update image on the device. This command is part of update procedure.

    import * as updateImageVerify from 'jooby-codec/obis-observer/commands/uplink/updateImageVerify.js';

    // response to updateImageVerify downlink command
    const bytes = [0x20, 0x01];

    // decoded payload
    const parameters = updateImageVerify.fromBytes(bytes);

    console.log(parameters);
    // output:
    {
    requestId: 32,
    isImageValid: true
    }

    Command format documentation

    Interfaces

    IUpdateImageVerifyParameters

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes