Skip to content

Commit e7196be

Browse files
committed
Updated tutorial content
1 parent ddd4ec5 commit e7196be

File tree

1 file changed

+8
-0
lines changed
  • content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mc-ard-lora

1 file changed

+8
-0
lines changed

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mc-ard-lora/content.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,14 @@ void loop() {
253253
modem.poll();
254254
}
255255
```
256+
257+
The `arduino_secrets.h` file which contains AppEUI and AppKey numbers for the TTN applications can be defined as following code. AppEUI and AppKey information is found on the End device page of the Application of TTN.
258+
259+
```arduino
260+
String appEui = "xxxxxxxxxxxxxxxx";
261+
String appKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
262+
```
263+
256264
If data was sent correctly to TTN, you should see the following messages in the Arduino IDE Serial Monitor:
257265

258266
In your device overview dashboard in TTN, you should see changes in data activity every time a new message is sent:

0 commit comments

Comments
 (0)