JSON Payload Parser

JSON Payload Parser

@Sindre Vadla Ravnaas

Hi,

My data is converted to Cayenne LPP before data is being sent to TagoIO.
But I am having problems understanding the payload parser.
Have tested using Tago’s RAW JSON to TagoIO JSON parser.
Below is a snippet from my json that is sent to TagoIO.
I am having problems parsing the values inside the object array.

Any hints or help is appreciated.
“object”: {
“accelerometer”: {
“3”: {
“x”: 0,
“y”: 0.019,
“z”: -1.063
}
},
“analogInput”: {
“5”: 3.73
},
“barometer”: {
“0”: 1011.6
},
“digitalOutput”: {
“6”: 0
},
“gpsLocation”: {
“4”: {
“altitude”: 60.01,
“latitude”: 59.0641,
“longitude”: 6.0192
}
},
“humiditySensor”: {
“2”: 42
},
“temperatureSensor”: {
“1”: 25.5
}
}
}
]