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 commandconst bytes = [0x0c, 0x01, 0x0c, 0x01, 0x08, 0x40, 0x66, 0x66];// decoded payloadconst parameters = readMeterArchiveWithDate.fromBytes(bytes);console.log(parameters);// output:{ requestId: 12, isCompleted: true, obisValueList: [{code: 8, content: 3.6}]} Copy
import * as readMeterArchiveWithDate from 'jooby-codec/obis-observer/commands/uplink/readMeterArchiveWithDate.js';// response to readMeterArchiveWithDate downlink commandconst bytes = [0x0c, 0x01, 0x0c, 0x01, 0x08, 0x40, 0x66, 0x66];// decoded payloadconst parameters = readMeterArchiveWithDate.fromBytes(bytes);console.log(parameters);// output:{ requestId: 12, isCompleted: true, obisValueList: [{code: 8, content: 3.6}]}
Command format documentation
Uplink command to get the meter archive data for the specific date.
Example: create command instance from command body hex dump
Command format documentation