I am trying to add a Status Attribute to the rm_node and plan to update it in periodically to inform about certain processes that are currently running.
The plan was to add either of the two lines below into the Rainmaker setup() method
Code: Select all
esp_rmaker_node_add_attribute(rm_node.getNodeHandle(), "Status", "initializing...");
rm_node.addNodeAttr("Status","initializing...");
However the attribute is not shown in when i open the details of the node where i can see the Firmware, NodeId etc...
also not when i call
Code: Select all
esp_rmaker_report_node_details();
Any help is very much appreciated.