New Node Attribute not Visible
Posted: Tue Feb 21, 2023 8:57 pm
Hi All,
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
and then updating them while the app is running.
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
after setting the Status during rainmaker setup
Any help is very much appreciated.
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.