Hi, I'm now working on a project to send data to my AWS DB.
I have Wireless Sensor node which is connected to function, debug and mqtt out node.
The sensor data is comming to debug page like this,
{
"addr": {
"S": "00:13:a2:00:41:f0:48:63"
},
"received": {
"S": "1649102906154"
},
"payload": {
"M": {
"rms_x": {
"N": "749.56"
},
"rms_z": {
"N": "119.63"
},
"rms_y": {
"N": "1391.97"
},
"max_x": {
"N": "0"
},
"max_z": {
"N": "244.83"
},
"max_y": {
"N": "0"
},
"reserve": {
"N": "1"
},
"data_type": {
"S": "Acceleration"
},
"temperature": {
"N": "25"
},
"min_x": {
"N": "-821.09"
},
"min_z": {
"N": "0"
},
"min_y": {
"N": "-1537.81"
},
"status": {
"S": "Valid"
}
}
}
}
But if I could delete certain points(I marked on the picture), then the data will be stored very nicely to the DB system. But I'm not sure that I could delete that part by using the function of Node-Red. Please let me know if you have any idea of it. I don't really know about the programming since I'm just an engineering student. Please help me, Thank you !
- I want to delete those marked parts.