Uplink command to set the Lorawan activation method OTAA or ABP.
import * as setLorawanActivationMethod from 'jooby-codec/obis-observer/commands/uplink/setLorawanActivationMethod.js';// response to setLorawanActivationMethod downlink commandconst bytes = [0x07];// decoded payloadconst parameters = setLorawanActivationMethod.fromBytes(bytes);console.log(parameters);// output:{ requestId: 7} Copy
import * as setLorawanActivationMethod from 'jooby-codec/obis-observer/commands/uplink/setLorawanActivationMethod.js';// response to setLorawanActivationMethod downlink commandconst bytes = [0x07];// decoded payloadconst parameters = setLorawanActivationMethod.fromBytes(bytes);console.log(parameters);// output:{ requestId: 7}
Command format documentation
Uplink command to set the Lorawan activation method OTAA or ABP.
Example: create command instance from command body hex dump
Command format documentation