Uplink command to get the OBIS code content from the specific metering device.
import * as getObisContentById from 'jooby-codec/obis-observer/commands/uplink/getObisContentById.js';// response to getObisContentByIdconst bytes = [0x79, 0x43, 0xac, 0x1d, 0x71];// decoded payloadconst parameters = getObisContentById.fromBytes(bytes);console.log(parameters);// output:{ requestId: 121, content: 344.23} Copy
import * as getObisContentById from 'jooby-codec/obis-observer/commands/uplink/getObisContentById.js';// response to getObisContentByIdconst bytes = [0x79, 0x43, 0xac, 0x1d, 0x71];// decoded payloadconst parameters = getObisContentById.fromBytes(bytes);console.log(parameters);// output:{ requestId: 121, content: 344.23}
Command format documentation
Uplink command to get the OBIS code content from the specific metering device.
Example: create command instance from command body hex dump
Command format documentation