Successfully established a webhook that provide a payload every 10 min from 4 distinctly different data sets. Every 10 min the payload represent a different data origin trough a single webhook: first 10 min the payload will represent a temperature value, the following 10 min will produce a payload of relative humidity and so on with two other sensors. At the end of 50 min the temperature sensor will sent its payload again and so on in a cyclical manner.
The data I receive is configured in the following manner:
The data section example in the payload is: “data”: “30312b303030363335333630”
This should translate into:
Chanel Number: 01
Sign: +
Measurement Value: 63536 (I would like to present this as 20.4)
Digital Input value is: 0
30 | 31 | 2B | 30 | 30 | 30 | 36 | 33 | 35 | 33 | 36 | 30 |
---|---|---|---|---|---|---|---|---|---|---|---|
0 | 1 | + | 0 | 0 | 0 | 6 | 3 | 5 | 3 | 6 | 0 |
L1 | L0 | D9 | D8 | D7 | D6 | D5 | D4 | D3 | D2 | D1 | IN |
How should I set the Function in the following Workflow:
I am trying to follow the instructions in: https://www.losant.com/blog/collect-monitor-visualize-sigfox-data
Unfortunately is show only a single (non cyclical) function setup.
Thank you for your assistance