Skip to content

Commit e271d49

Browse files
committedDec 16, 2020
Adjusted Python from 3.8 to 3.7 to increase compatibility with users environment
1 parent e75b3ce commit e271d49

File tree

3 files changed

+20
-17
lines changed

3 files changed

+20
-17
lines changed
 

‎timestream/template.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Resources:
3333
Properties:
3434
CodeUri: src-lambda-write-to-timestream
3535
Handler: app.lambda_handler
36-
Runtime: python3.8
36+
Runtime: python3.7
3737
Timeout: 10
3838
Environment:
3939
Variables:
@@ -72,7 +72,7 @@ Resources:
7272
Properties:
7373
CodeUri: src-lambda-transform
7474
Handler: app.lambda_handler
75-
Runtime: python3.8
75+
Runtime: python3.7
7676
Layers:
7777
- Ref: LoRaWANPayloadDecoderLayer
7878
Timeout: 10

‎transform_binary_payload/README.md

+17-8
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ A picture bellow illustrates an architecture in this sample:
1818

1919
By executing a stack in a CloudFormation template the following resources will be deployed in your AWS account:
2020

21-
- AWS IoT Rule `samplebinarytransform_TransformLoRaWANBinaryPayload_sample_device` with the neccessary IAM roles to perform rule actions
21+
- AWS IoT Rule `samplebinarytransform_TransformLoRaWANBinaryPayload_sample_device` with the necessary IAM roles to perform rule actions
2222
- AWS Lambda function `samplebinarytransform-TransformLoRaWANBinaryPayloadFunction...`
2323
- AWS Lambda layer `samplebinarytransform-LoRaWANPayloadDecoderLayer...`
2424

2525
The above names are listed under assumption that you will use `samplebinarytransform`as a stack name.
2626

2727
## Example for transforming a LoRaWAN binary payload
2828

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.
3030

3131
### Step 1: Launch the AWS CloudFormation stack
3232

@@ -48,7 +48,7 @@ In the Outputs section of your stack in the AWS CloudFormation console you find
4848

4949
### Step 2: Testing binary transformation by simulating ingestion from a LoRaWAN device
5050

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:
5252

5353
```json
5454
{
@@ -74,6 +74,7 @@ Please use an MQTT Test Client to ingest a following payload to the topic `loraw
7474
}
7575
```
7676

77+
7778
The expected output on the topic `dt/lorawantransformed` will be:
7879

7980
```json
@@ -144,17 +145,18 @@ After a successful deployment of the AWS CloudFormation stack, you should config
144145
- If you already have created a LoRaWAN devices, please use the "Edit" function of the console to update the Destination of the device
145146

146147
## 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).
148150

149151
To verify the invocation of the AWS IoT Rule, please follow these steps:
150152
1. Open "IoT Core" in an AWS management console
151153
2. Click on "Test" to open a MQTT client
152154
3. Click on "Subscribe to topic"
153-
4. Add `dt/lorawantransformed` and click on "Subscribe"
155+
4. Add `lorawantransformed` and click on "Subscribe"
154156
5. Click on "Subscribe to topic"
155-
6. Add `dt/lorawanerror` and click on "Subscribe"
157+
6. Add `lorawanerror` and click on "Subscribe"
156158
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:
158160
```json
159161
{
160162
"transformed_payload": {
@@ -188,7 +190,14 @@ To verify the invocation of the AWS IoT Rule, please follow these steps:
188190
}
189191
```
190192

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+
192201
## Step 5: Cleaning up
193202
Please open AWS CloudFormation console, select the stack and click on "Delete"
194203

‎transform_binary_payload/template.yaml

+1-7
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ Parameters:
99
Default: sample_device
1010
Description: Name of binary decoder as configured in src-iotrule-transformation/app.py
1111

12-
TopicIncomingBinaryMessages:
13-
Type: String
14-
Default: lorawanbinary
15-
Description: Topic pattern for subscription to messages from a AWS IoT Core for LoRaWAN destination
16-
1712
TopicOutgoingErrors:
1813
Type: String
1914
Default: lorawanerror
@@ -37,7 +32,7 @@ Resources:
3732
Properties:
3833
CodeUri: src-iotrule-transformation
3934
Handler: app.lambda_handler
40-
Runtime: python3.8
35+
Runtime: python3.7
4136
Layers:
4237
- Ref: LoRaWANPayloadDecoderLayer
4338
Environment:
@@ -87,7 +82,6 @@ Resources:
8782
WirelessMetadata as lns_payload.WirelessMetadata,
8883
PayloadData as lns_payload.PayloadData,
8984
timestamp() as timestamp
90-
from '${TopicIncomingBinaryMessages}'
9185
- { LambdaARN: !GetAtt TransformLoRaWANBinaryPayloadFunction.Arn}
9286
Actions:
9387
- Republish:

0 commit comments

Comments
 (0)
Please sign in to comment.