jooby-codec
    Preparing search index...

    Namespace readMeterArchiveWithDate

    Uplink command to get the meter archive data for the specific date.

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

    // response to readMeterArchiveWithDate downlink command
    const bytes = [0x0c, 0x01, 0x0c, 0x01, 0x08, 0x40, 0x66, 0x66];

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

    console.log(parameters);
    // output:
    {
    requestId: 12,
    isCompleted: true,
    obisValueList: [{code: 8, content: 3.6}]
    }

    Command format documentation

    Variables

    examples
    headerSize
    id
    name

    Functions

    fromBytes
    toBytes