jooby-codec
    Preparing search index...

    Uplink command to get the list of the meter profile id.

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

    // response to getMeterProfileIdList with two meterProfileId
    const bytes = [0x05, 0x01, 0x01, 0x02];

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

    console.log(parameters);
    // output:
    {
    requestId: 5,
    isCompleted: true,
    meterProfileIdList: [1, 2]
    }

    Command format documentation

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes