Uplink command to get the list of the meter profile id.
import * as getMeterProfileIdList from 'jooby-codec/obis-observer/commands/uplink/getMeterProfileIdList.js';// response to getMeterProfileIdList with two meterProfileIdconst bytes = [0x05, 0x01, 0x01, 0x02];// decoded payloadconst parameters = getMeterProfileIdList.fromBytes(bytes);console.log(parameters);// output:{ requestId: 5, isCompleted: true, meterProfileIdList: [1, 2]} Copy
import * as getMeterProfileIdList from 'jooby-codec/obis-observer/commands/uplink/getMeterProfileIdList.js';// response to getMeterProfileIdList with two meterProfileIdconst bytes = [0x05, 0x01, 0x01, 0x02];// decoded payloadconst parameters = getMeterProfileIdList.fromBytes(bytes);console.log(parameters);// output:{ requestId: 5, isCompleted: true, meterProfileIdList: [1, 2]}
Command format documentation
Uplink command to get the list of the meter profile id.
Example: create command instance from command body hex dump
Command format documentation