jooby-codec
    Preparing search index...

    Uplink command to get the meter profile related information.

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

    // response to getMeterProfile
    const bytes = [0x03, 0x02, 0x58, 0x00, 0x2d];

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

    console.log(parameters);
    // output:
    {
    requestId: 3,
    archive1Period: 600,
    archive2Period: 45
    }

    Command format documentation

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes