Signal quality for NB-IoT modules.
Used as a response to a downlink command or as an addition command to each uplink message if parameter 0x39 is enabled.
import * as signalQuality from 'jooby-codec/analog/commands/uplink/signalQuality.js';// response for signal qualityconst bytes = [0x1f, 0x34, 0x06, 0xb7, 0xb3, 0xfc, 0x12, 0x01, 0x00];// decoded payloadconst parameters = signalQuality.fromBytes(bytes);console.log(parameters);// output:{ rssi: -73, rsrp: -77, rsrq: -4, sinr: 18, txPower: 1, ecl: 0,} Copy
import * as signalQuality from 'jooby-codec/analog/commands/uplink/signalQuality.js';// response for signal qualityconst bytes = [0x1f, 0x34, 0x06, 0xb7, 0xb3, 0xfc, 0x12, 0x01, 0x00];// decoded payloadconst parameters = signalQuality.fromBytes(bytes);console.log(parameters);// output:{ rssi: -73, rsrp: -77, rsrq: -4, sinr: 18, txPower: 1, ecl: 0,}
Command format documentation
Signal quality for NB-IoT modules.
Used as a response to a downlink command or as an addition command to each uplink message if parameter 0x39 is enabled.
Example: create command instance from command body hex dump
Command format documentation