This is purely so I can quickly look this stuff up and is for usage in the lora_terminal app.
I will add more to it as I find various commands useful.
Sources:
- lora_terminal
- How to Connect a LoRa Module to Flipper Zero for Long-Range Wireless Communication
- LoRa AT Command Guide
Note
Long press the !
to get the ?
AT
Should return OK
if everything is connected
AT+VER?
Should return the module's version information.
AT+BAND?
Should return the module's operating frequency band.
AT+BAND=<BAND GOES HERE>
Should set the module's operating frequency band.
AT+BAND=868500000
This would set the operating band to EU868(?).
AT+NETWORKID=<ID GOES HERE>
Should set the module's network ID.
AT+ADDRESS=<ADDRESS GOES HERE>
Should set the module's address.
AT+ADDRESS=101
AT+PARAMETER?
This will return the radio paramerts as set(spreading factor, bandwidth, coding rate, programmed preamble in that order). I am leaving these as default:
+PARAMETER=9,7,1,12
- spreading factor: 9 SF7 to SF9 at 125kHz, SF7 to SF10 at 250kHz, and SF7 to SF11 at 500kHz
- bandwidth: 7 = 125MHz
- coding rate: 1
- programmed preamble: 12 When NETWORKID=18, The value can be configured to 4~24. Other NETWORKID can only be configured to 12
AT+SEND=<Address>,<Payload Length>,<Data>
Will send a message of the pre-specified length
AT+SEND=102,5,Hello