Hi @ganesh
there are several ways how you could solve this. One way would be to define your own complex data types and use implicit nodes in the KVD App. How to create your own complex data types is described in the how-to @CodeShepherd mentioned. How to use implicit nodes in the Data Layer you can see in the Application Manual for the KVD App (Chapter: Configuring the nodes - Implicit nodes). An implicit node can be created (create-on-write) and removed.
How your flatbuffer schema for your complex data type could look like as an example:
// IDL file for forum post.
namespace myDataType;
table Measurement {
serial:string;
timestamp:ulong;
pressure1:float;
pressure2:float;
leak:float;
temperature:float;
cycletime:float;
}
root_type Measurement;
I can also recommend you to look into this How-to: Creating a dynamic Data Layer Node from Node-RED using Key Value Database App
Best regards,
Nick
... View more