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
The above names are listed under assumption that you will use `samplebinarytransform`as a stack name.
26
26
27
27
## Example for transforming a LoRaWAN binary payload
28
28
29
-
Please follow the steps below to launch a sample solution in your AWS account, integrate it with LoRaWAN for Iot Core and test it.
29
+
Please follow the steps below to launch a sample solution in your AWS account, integrate it with LoRaWAN for IoT Core and test it.
30
30
31
31
### Step 1: Launch the AWS CloudFormation stack
32
32
@@ -48,7 +48,7 @@ In the Outputs section of your stack in the AWS CloudFormation console you find
48
48
49
49
### Step 2: Testing binary transformation by simulating ingestion from a LoRaWAN device
50
50
51
-
Please use an MQTT Test Client to ingest a following payload to the topic `lorawanbinary`:
51
+
Please use an MQTT Test Client to invoke the AWS IoT Rule `samplebinarytransform_TransformLoRaWANBinaryPayload_sample_device` by publishing the payload below to the MQTT topic `$aws/rules/samplebinarytransform_TransformLoRaWANBinaryPayloadFor_sample_device`. The payload is structured in a same way it will be ingested by AWS IoT Core for LoRaWAN:
52
52
53
53
```json
54
54
{
@@ -74,6 +74,7 @@ Please use an MQTT Test Client to ingest a following payload to the topic `loraw
74
74
}
75
75
```
76
76
77
+
77
78
The expected output on the topic `dt/lorawantransformed` will be:
78
79
79
80
```json
@@ -144,17 +145,18 @@ After a successful deployment of the AWS CloudFormation stack, you should config
144
145
- If you already have created a LoRaWAN devices, please use the "Edit" function of the console to update the Destination of the device
145
146
146
147
## Step 4: Verify the invocation of the AWS IoT Rule on ingestion from a LoRaWAN device
147
-
The following description assumes that you already configured and tested your LoRaWAN Device and LoRaWAN gateway in AWS IoT Core for LoRaWAN. To learn how to do this, please consult AWS IoT Core for LoRaWAN documentation.
148
+
149
+
The following description assumes that you already configured and tested your LoRaWAN Device and LoRaWAN gateway in AWS IoT Core for LoRaWAN. To learn how to do this, please consult [AWS IoT Core for LoRaWAN developer guide](https://docs.aws.amazon.com/iot/latest/developerguide/connect-iot-lorawan.html#connect-iot-lorawan-getting-started-overview).
148
150
149
151
To verify the invocation of the AWS IoT Rule, please follow these steps:
150
152
1. Open "IoT Core" in an AWS management console
151
153
2. Click on "Test" to open a MQTT client
152
154
3. Click on "Subscribe to topic"
153
-
4. Add `dt/lorawantransformed` and click on "Subscribe"
155
+
4. Add `lorawantransformed` and click on "Subscribe"
154
156
5. Click on "Subscribe to topic"
155
-
6. Add `dt/lorawanerror` and click on "Subscribe"
157
+
6. Add `lorawanerror` and click on "Subscribe"
156
158
7. Trigger or wait for the ingestion for your LoRaWAN device connected to AWS IoT Core for LoRaWAN
157
-
6. After LoRaWAN device ingestion, you should see a payload like this on `dt/lorawantransformed` topic:
159
+
6. After LoRaWAN device ingestion, you should see a payload like this on `lorawantransformed` topic:
158
160
```json
159
161
{
160
162
"transformed_payload": {
@@ -188,7 +190,14 @@ To verify the invocation of the AWS IoT Rule, please follow these steps:
188
190
}
189
191
```
190
192
191
-
Congratulations! You successfully implemnted and tested binary decoding for AWS IoT Core for LoRaWAN.
193
+
Congratulations! You successfully implemented and tested binary decoding for AWS IoT Core for LoRaWAN.
194
+
195
+
Now you can configure the processing of the decoded data by adding further actions to the AWS IoT Rule `samplebinarytransform_TransformLoRaWANBinaryPayload_sample_device`, for example actions to to:
196
+
197
+
- Store the data in Amazon Timestream, DynamoDB or S3
198
+
- Send a message as an input to AWS IoT events
199
+
- Send a message to AWS IoT analytics
200
+
192
201
## Step 5: Cleaning up
193
202
Please open AWS CloudFormation console, select the stack and click on "Delete"
0 commit comments