Uplink command to get extended current values like temperature and frequency.
import * as getExtendedCurrentValues from 'jooby-codec/mtx1/commands/uplink/getExtendedCurrentValues.js';// simple responseconst bytes = [0x00, 0x43, 0x00, 0x3c];// decoded payloadconst parameters = getExtendedCurrentValues.fromBytes(bytes);console.log(parameters);// output:{ temperature: 67, frequency: 60} Copy
import * as getExtendedCurrentValues from 'jooby-codec/mtx1/commands/uplink/getExtendedCurrentValues.js';// simple responseconst bytes = [0x00, 0x43, 0x00, 0x3c];// decoded payloadconst parameters = getExtendedCurrentValues.fromBytes(bytes);console.log(parameters);// output:{ temperature: 67, frequency: 60}
Command format documentation
Uplink command to get extended current values like temperature and frequency.
Example: create command instance from command body hex dump
Command format documentation