jooby-codec
    Preparing search index...

    Uplink command to get the OBIS id list for the specific meter profile.

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

    // response to getObisIdList downlink command
    const bytes = [0x03, 0x01, 0xc5, 0xc6];

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

    console.log(parameters);
    // output:
    {
    requestId: 3,
    isCompleted: true,
    obisIdList: [197, 198]
    }

    Command format documentation

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes