jooby-codec
    Preparing search index...

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

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

    // response to getObisContent
    const bytes = [0x02, 0x08, 0x35, 0x37, 0x39, 0x30, 0x36, 0x36, 0x33, 0x35];

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

    console.log(parameters);
    // output:
    {
    requestId: 2,
    content: '57906635'
    }

    Command format documentation

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes