jooby-codec
    Preparing search index...

    Uplink command to get the OBIS code content from the specific metering device.

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

    // response to getObisContentById
    const bytes = [0x79, 0x43, 0xac, 0x1d, 0x71];

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

    console.log(parameters);
    // output:
    {
    requestId: 121,
    content: 344.23
    }

    Command format documentation

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes