-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Things Network v3 #36
Comments
@hardillb FWIW, I managed to get it working using the RAKWireless repo here, following the instructions there regarding standard setup, then downloading the |
@ryanbateman Thanks, I have mine working via that route, but it would be nice for PiSupply offer an update since they are still selling this hardware. |
@hardillb Yes, I very much agree. |
Thnaks, @ryanbateman Could you please add the instructions and do a pull request if possible? Thanks. |
I have instructions for this already.
…On Thu, 11 Aug 2022, 09:04 Salman Faris, ***@***.***> wrote:
Thnaks, @ryanbateman <https://github.com/ryanbateman> Could you please
add the instructions and do a pull request if possible? Thanks.
—
Reply to this email directly, view it on GitHub
<#36 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAOKSKWEW2WS2SQ763P3WTDVYSQWRANCNFSM5H5VPJWQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
It took me a bit of research and trial and error, but I succeeded in the end. Here are my notes in which I documented what I learned. They're not step-by-step instructions, but for people already familiar with working with LoRaWAN and TheThingsNetwork, they should give you all the info you need to get it working. LoRaWAN settings for working with the LoRa Node pHAT RAK811 and TheThingsNetworkRAK811The [[LoRa Node pHAT RAK811]] hardware and the RAK811 python library's LoRaWAN compatibility seem to be limited to a specific set of its specifications. Supported ConfigurationsHere are the configurations I know I can apply: Given that we're working with
Fixed TTN ConfigurationsHere are the configurations that can't be applied/I didn't apply to the RAK811 which I had to apply in TheThingsNetwork console (while adding a device):
To see a list of the device's configuration that are set to explore further configuration options, run the following shell command on a raspberry pi to which a RAK811 is connected: rak811v3 get-config lora:status DevEUIPreconfiguredThe RAK811 pHAT has a pre-configured device EUI. rak811v3 get-config lora:status | grep DevEui ManualThe RAK811 pHAT's DevEUI can be changed, in shell or in python, replacing the preconfigured device EUI, and persisting across reboots. rak811v3 set-config lora:dev_eui 70XXXXXXXXXXXXXX from rak811.rak811_v3 import Rak811
lora = Rak811()
DEV_EUI = "70XXXXXXXXXXXXXX"
lora.set_config(f'lora:dev_eui:{DEV_EUI}') |
Hi,
Are there any instructions for setting up the Gateway Hat with the new v3 Things network setup?
The text was updated successfully, but these errors were encountered: