Uplink command to get the OBIS code content from the specific metering device.
import * as getObisContent from 'jooby-codec/obis-observer/commands/uplink/getObisContent.js';// response to getObisContentconst bytes = [0x02, 0x08, 0x35, 0x37, 0x39, 0x30, 0x36, 0x36, 0x33, 0x35];// decoded payloadconst parameters = getObisContent.fromBytes(bytes);console.log(parameters);// output:{ requestId: 2, content: '57906635'} Copy
import * as getObisContent from 'jooby-codec/obis-observer/commands/uplink/getObisContent.js';// response to getObisContentconst bytes = [0x02, 0x08, 0x35, 0x37, 0x39, 0x30, 0x36, 0x36, 0x33, 0x35];// decoded payloadconst parameters = getObisContent.fromBytes(bytes);console.log(parameters);// output:{ requestId: 2, content: '57906635'}
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