You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/gettingstarted/registration/lora/ttn.md
+10-9Lines changed: 10 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,18 +12,18 @@ The Things Stack (TTS) is a LoRaWAN service that allows you to send and receive
12
12
13
13
*[Create an account](#create-an-account)
14
14
*[Register a node](#register-a-node)
15
-
*[Registera Gateway](#register-a-gateway)
15
+
*[Register a gateway](#register-a-gateway)
16
16
17
17
## Create an account
18
-
In order to use TTS you should navigate to [https://console.cloud.thethings.network](https://console.cloud.thethings.network) and select your region. Following that, either login using your account, or create a new one. Already Existing accounts on The Things Network (TTN) should work here as well.
18
+
In order to use TTS you should navigate to [https://console.cloud.thethings.network](https://console.cloud.thethings.network) and select your region. Following that, either login using your account, or create a new one. Already existing accounts on The Things Network (TTN) should work here as well.
19
19
20
20

21
21
22
22

23
23
24
24
Once an account has been registered, you can [create an application](#register-a-node) for your nodes, or [register a gateway](#register-a-gateway).
25
25
26
-
## Registera node
26
+
## Register a node
27
27
28
28
In order to register your device, you must first create an application for these devices to belong to. This way the Network will know where to send the devices data to.
29
29
@@ -33,13 +33,16 @@ Selecting the `Applications` tab at the top of the TTN console, will bring up a
33
33
34
34
Enter a unique `Application ID` as well as a Description & Handler Registration.
35
35
36
-
Now the Pycom module nodes can be registered to send data up to the new Application.
37
-
38
-
You'll need to register your devices as nodes to the application. Click the button `+ Add device`. Next, you'll need to enter the specifics. You can choose either `OTAA` or `ABP` as activation methods. Learn more about the difference [here](https://www.thethingsindustries.com/docs/devices/abp-vs-otaa/). In this application we'll choose `OTAA`. Select `LoRaMAC V1.0.2` and check whether the region servers are set correctly.
36
+
Now the Pycom module nodes can be registered to send data up to the new Application. Click the button `+ Add end device`. Next, you'll need to enter the specifics. Click on `Manually` and `Show advanced activation`. You can choose either `OTAA` or `ABP` as activation methods. Learn more about the difference [here](https://www.thethingsindustries.com/docs/devices/abp-vs-otaa/). In this example we'll use `OTAA`. Select `LoRaMAC V1.0.2` and check whether the region servers are set correctly.
39
37
40
38

41
39
42
-
In the `Register Device` panel, complete the forms for the `End Device ID`, `APP EUI` and the `Device EUI`. The `End Device ID` is a unique name for the device we're about to register, you can choose something that makes sense for your project. The `APP EUI` is user specified and is unique to the device in this application, we can set that to all 0's in this example. The `Device EUI` should be a globally unique identifier for the device. You can run the following on you Pycom module to retrieve its EUI.
40
+
Scroll down and fill in the fields for `DevEUI`, `AppEUI` and `End device ID`.
41
+
42
+
* The `DevEUI` should be a globally unique identifier for the device. You can run the code below on you Pycom module to retrieve its EUI.
43
+
* The `AppEUI` is user specified and is unique to the device in this application, we can `Fill with zeros` in this example.
44
+
* The `AppKey` is provided by TTN. Click `Generate`.
45
+
* The `End device ID` is a unique name for the device we're about to register, you can choose something that makes sense for your project.
The next screen allows us to choose the Frequency plan and regional parameters. Please choose a frequency plan that is compatible with your region and nearby gateways. If you're not sure which one to choose, select the one closest to your region labelled 'used by TTN'. For the regional parameters, select `PHY-V1.0.2-RevA`.
54
57
55
-
In the following section, generate a random `AppKey`.
56
-
57
58
Great! Now your device is registered with TTS. You can now use the credentials in the [LoRaWAN OTAA](/tutorials/networks/lora/lorawan-otaa/) example.
0 commit comments