This option allows you to use any other Sensor Network, which is not listed above, by sending an custom JSON format to ConnectedCooking.
JSON payload
The JSON schema for the uplink message is listed below.
{
"devEui": "xxxx",
"timestamp": "2019-11-08T13:59:25Z",
"unixTimestamp": 1573217965,
"rssi": -90, // in dBm
"decoded": [
{
"temperature": 22.1, // in °C
"battery": 3.1, // in Volts
"humidity": 60.0, // in Percentage
"timestamp": "2019-11-08T13:59:25Z",
"unixTimestamp": 1573217965
},
...
]
}
devEui, rssi are required fields, also data or decoded is required for the actual data
If you do not provide timestamp or unixTimestamp the current time will be set by the system!
Base64
{
"devEui": "xxxx",
"timestamp": "2019-11-08T13:59:25Z",
"unixTimestamp": 1573217965,
"rssi": -90, // in dBm
"data": "CcQBDIAAAGkI2xg="
}
Hex
{
"devEui": "xxxx",
"timestamp": "2019-11-08T13:59:25Z",
"unixTimestamp": 1573217965,
"rssi": -90, // in dBm
"encoding": "hex",
"data": "09c4010c8000006908db6d"
}
data must be base64 encoded or hex. Rational sensors use base64 encoded payload by default