Uplink command to get the OBIS id list for the specific meter profile.
import * as getObisIdList from 'jooby-codec/obis-observer/commands/uplink/getObisIdList.js';// response to getObisIdList downlink commandconst bytes = [0x03, 0x01, 0xc5, 0xc6];// decoded payloadconst parameters = getObisIdList.fromBytes(bytes);console.log(parameters);// output:{ requestId: 3, isCompleted: true, obisIdList: [197, 198]} Copy
import * as getObisIdList from 'jooby-codec/obis-observer/commands/uplink/getObisIdList.js';// response to getObisIdList downlink commandconst bytes = [0x03, 0x01, 0xc5, 0xc6];// decoded payloadconst parameters = getObisIdList.fromBytes(bytes);console.log(parameters);// output:{ requestId: 3, isCompleted: true, obisIdList: [197, 198]}
Command format documentation
Uplink command to get the OBIS id list for the specific meter profile.
Example: create command instance from command body hex dump
Command format documentation